From 48f32c048aa2a66c9c8a1ce8c04d52800c120a32 Mon Sep 17 00:00:00 2001 From: szaka Date: Wed, 23 Jan 2008 21:05:40 +0000 Subject: [PATCH] fix %lld when off_t is used on 64-bit (Alon Bar-Lev) --- src/ntfs-3g.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ntfs-3g.c b/src/ntfs-3g.c index d2e08792..f932773c 100644 --- a/src/ntfs-3g.c +++ b/src/ntfs-3g.c @@ -703,7 +703,7 @@ static int ntfs_fuse_write(const char *org_path, const char *buf, size_t size, res = ntfs_attr_pwrite(na, offset, size, buf); if (res < (s64)size) ntfs_log_perror("ntfs_attr_pwrite partial write (%lld: " - "%lld <> %d)", (s64)offset, (s64)size, res); + "%lld <> %d)", (long long)offset, (long long)size, res); if (res <= 0) { res = -errno; goto exit;