summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2013-04-19 13:00:34 +0200
committerAndreas Baumann <abaumann@yahoo.com>2013-04-19 13:00:34 +0200
commit62ac412f81e698021ac6d0dfb643585455dfd34b (patch)
tree57b0765eb09b40d86db980ed5a5fd8fac3c1a4ed
parent36b1a442815ebe821aaaf6388fbd0d75b853a44a (diff)
downloadpgfuse-62ac412f81e698021ac6d0dfb643585455dfd34b.tar.gz
pgfuse-62ac412f81e698021ac6d0dfb643585455dfd34b.tar.bz2
fixed 64-bit printing message
-rw-r--r--pgfuse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pgfuse.c b/pgfuse.c
index 5593839..31f77d3 100644
--- a/pgfuse.c
+++ b/pgfuse.c
@@ -1018,7 +1018,7 @@ static int pgfuse_statfs( const char *path, struct statvfs *buf )
}
if( data->verbose ) {
- syslog( LOG_DEBUG, "Checking mount point '%s' for free disk space, now %jd (%d), was %jd, pgfuse mount point '%s', thread #%u",
+ syslog( LOG_DEBUG, "Checking mount point '%s' for free disk space, now %jd (%jd), was %jd, pgfuse mount point '%s', thread #%u",
prefix, fs.f_bfree, fs.f_frsize, blocks_free, data->mountpoint, THREAD_ID );
}