32 bit: Fix printf off_t.
authorRichard Jones <rjones@redhat.com>
Fri, 11 Nov 2011 20:26:17 +0000 (20:26 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Tue, 22 Nov 2011 14:44:53 +0000 (14:44 +0000)
(cherry picked from commit 47963bc9cc0b47af0541010a4fa14260405acaa5)

fuse/guestmount.c

index bfd8174..54ed947 100644 (file)
@@ -595,7 +595,7 @@ static int
 fg_read (const char *path, char *buf, size_t size, off_t offset,
          struct fuse_file_info *fi)
 {
-  TRACE_CALL ("%s, %p, %zu, %ld", path, buf, size, offset);
+  TRACE_CALL ("%s, %p, %zu, %ld", path, buf, size, (long) offset);
              
   char *r;
   size_t rsize;
@@ -632,7 +632,7 @@ static int
 fg_write (const char *path, const char *buf, size_t size,
           off_t offset, struct fuse_file_info *fi)
 {
-  TRACE_CALL ("%s, %p, %zu, %ld", path, buf, size, offset);
+  TRACE_CALL ("%s, %p, %zu, %ld", path, buf, size, (long) offset);
 
   if (read_only) return -EROFS;