summaryrefslogtreecommitdiff
path: root/rts/Ticky.c
diff options
context:
space:
mode:
Diffstat (limited to 'rts/Ticky.c')
-rw-r--r--rts/Ticky.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/rts/Ticky.c b/rts/Ticky.c
index ff700df234..75aa4b1022 100644
--- a/rts/Ticky.c
+++ b/rts/Ticky.c
@@ -586,11 +586,11 @@ 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 %6zu%6zu %-11s%-30s",
+ fprintf(tf, "%11ld%11ld %6lu%6lu %-11s%-30s",
p->entry_count,
p->allocs,
- p->arity,
- p->stk_args,
+ (unsigned long)p->arity,
+ (unsigned long)p->stk_args,
p->arg_kinds,
p->str);