diff options
Diffstat (limited to 'src/statfile.c')
-rw-r--r-- | src/statfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/statfile.c b/src/statfile.c index 65da15033..215378749 100644 --- a/src/statfile.c +++ b/src/statfile.c @@ -332,14 +332,14 @@ statfile_pool_open (statfile_pool_t * pool, gchar *filename, size_t size, gboole } if (!forced && st.st_size > pool->max) { - msg_info ("cannot attach file to pool, too large: %z", (size_t) st.st_size); + msg_info ("cannot attach file to pool, too large: %Hz", (size_t) st.st_size); return NULL; } memory_pool_lock_mutex (pool->lock); if (!forced && abs (st.st_size - size) > sizeof (struct stat_file)) { memory_pool_unlock_mutex (pool->lock); - msg_warn ("need to reindex statfile old size: %z, new size: %z", st.st_size, size); + msg_warn ("need to reindex statfile old size: %Hz, new size: %Hz", st.st_size, size); return statfile_pool_reindex (pool, filename, st.st_size, size); } memory_pool_unlock_mutex (pool->lock); |