diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2009-11-06 09:14:31 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2009-11-06 09:14:55 +0000 |
commit | e1f5472395b08033c60054e8f87f3c61126c4fa4 (patch) | |
tree | 8b99c5379eaf99ac34675a879f0a23a3718afa0c /fuse | |
parent | efad4f53923dcca94613e193d6383bd032e70498 (diff) | |
download | libguestfs-e1f5472395b08033c60054e8f87f3c61126c4fa4.tar.gz libguestfs-e1f5472395b08033c60054e8f87f3c61126c4fa4.tar.xz libguestfs-e1f5472395b08033c60054e8f87f3c61126c4fa4.zip |
Fixes for compiling on 32 bit.
Diffstat (limited to 'fuse')
-rw-r--r-- | fuse/guestmount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuse/guestmount.c b/fuse/guestmount.c index 3ae614ca..8812ac27 100644 --- a/fuse/guestmount.c +++ b/fuse/guestmount.c @@ -619,7 +619,7 @@ fg_read (const char *path, char *buf, size_t size, off_t offset, size_t rsize; if (verbose) - fprintf (stderr, "fg_read: %s: size %zu offset %zu\n", + fprintf (stderr, "fg_read: %s: size %zu offset %ju\n", path, size, offset); /* The guestfs protocol limits size to somewhere over 2MB. We just |