From 43d2c583cc32e9d9448d8220be2aa15c435b03e7 Mon Sep 17 00:00:00 2001 From: "cantab.net!aia21" Date: Tue, 9 Mar 2004 14:47:34 +0000 Subject: [PATCH] Auto merged 2004/03/09 14:38:49+00:00 cantab.net!aia21 Fix all occurences of printf with %ll length modifiers but 64 bit arguments to typecast the arguments to (unsigned) long long to avoid the warnings when compiling on 64 bit architectures. (Logical change 1.306) --- libntfs/bitmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libntfs/bitmap.c b/libntfs/bitmap.c index 2a5f7b90..23c7807e 100644 --- a/libntfs/bitmap.c +++ b/libntfs/bitmap.c @@ -165,7 +165,7 @@ static int ntfs_bitmap_set_bits_in_run(ntfs_attr *na, s64 start_bit, s64 count, fprintf(stderr, "%s(): Eeek! Last buffer but count is " "not zero (= %lli). Leaving " "inconsistent metadata.\n", - __FUNCTION__, count); + __FUNCTION__, (long long)count); err = EIO; goto free_err_out; }