diff options
author | Alexander Larsson <alexl@src.gnome.org> | 2007-09-13 13:11:36 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2007-09-13 13:11:36 +0000 |
commit | 56f5eda244fcdde423520ca13e4dba323e1d6290 (patch) | |
tree | 9ff8c09e429eafa809ca7b5444c5cc93cd8a383a /daemon/gvfsjobread.c | |
parent | b39ad033c113016d4f29e5c5e0cf48e1cf1bea7b (diff) | |
download | gvfs-56f5eda244fcdde423520ca13e4dba323e1d6290.tar.gz |
[PATCH] gvfs build fixes
Heya,
I was looking at the code in tip, and tried compiling on my x86-64, and
it didn't work, so here's a few build fixes.
Cheers
--
Bastien Nocera <hadess@hadess.net>
Original git commit by Bastien Nocera <hadess@hadess.net> at 1178056856 +0100
svn path=/trunk/; revision=494
Diffstat (limited to 'daemon/gvfsjobread.c')
-rw-r--r-- | daemon/gvfsjobread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/gvfsjobread.c b/daemon/gvfsjobread.c index 6d143869..015187b5 100644 --- a/daemon/gvfsjobread.c +++ b/daemon/gvfsjobread.c @@ -74,7 +74,7 @@ static void send_reply (GVfsJob *job) { GVfsJobRead *op_job = G_VFS_JOB_READ (job); - g_print ("job_read send reply, %d bytes\n", op_job->data_count); + g_print ("job_read send reply, %"G_GSSIZE_FORMAT" bytes\n", op_job->data_count); if (job->failed) g_vfs_channel_send_error (G_VFS_CHANNEL (op_job->channel), job->error); |