summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--difftool/super.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/difftool/super.c b/difftool/super.c
index 0b75d9b..85c4a1f 100644
--- a/difftool/super.c
+++ b/difftool/super.c
@@ -36,7 +36,8 @@ static void print_value_difference(const char *name, uint64_t a, uint64_t b)
c = '-';
diff = a - b;
}
- fprintf(stdout, "%s: %c%lu\n", name, c, diff);
+ fprintf(stdout, "%s: %c%llu\n", name, c,
+ (unsigned long long)diff);
}
}