diff options
author | Ian Lynagh <igloo@earth.li> | 2008-04-25 13:47:25 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-04-25 13:47:25 +0000 |
commit | a4b278463c6ee8bd0f1df4e99117209f2fc00c0e (patch) | |
tree | 0a5cb7ee1ee89065166f78d4a067cbcd714ed567 /rts/Ticky.c | |
parent | 7fe8af767efbe7f063e5da7512961bb2edf50de0 (diff) | |
download | haskell-a4b278463c6ee8bd0f1df4e99117209f2fc00c0e.tar.gz |
Fix a couple of format strings in Ticky.c
Diffstat (limited to 'rts/Ticky.c')
-rw-r--r-- | rts/Ticky.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Ticky.c b/rts/Ticky.c index aa7d1e4332..9ec5099d66 100644 --- a/rts/Ticky.c +++ b/rts/Ticky.c @@ -633,7 +633,7 @@ printRegisteredCounterInfo (FILE *tf) /* Function name at the end so it doesn't mess up the tabulation */ for (p = ticky_entry_ctrs; p != NULL; p = p->link) { - fprintf(tf, "%11ld%11ld %6u%6u %-11s%-30s", + fprintf(tf, "%11ld%11ld %6zu%6zu %-11s%-30s", p->entry_count, p->allocs, p->arity, |