]> source.dussan.org Git - rspamd.git/commitdiff
off_t may be not compatible with size_t.
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 5 Dec 2013 15:31:23 +0000 (15:31 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 5 Dec 2013 15:31:23 +0000 (15:31 +0000)
src/statfile.c

index b4771ce15ed3578417c0bc7aee68a1410f62b7bb..35dd541724b6c78138afba304cd652c7557217aa 100644 (file)
@@ -310,7 +310,7 @@ statfile_pool_open (statfile_pool_t * pool, gchar *filename, size_t size, gboole
        if (!forced && labs (size - st.st_size) > (long)sizeof (struct stat_file) * 2
                        && size > sizeof (struct stat_file)) {
                memory_pool_unlock_mutex (pool->lock);
-               msg_warn ("need to reindex statfile old size: %Hz, new size: %Hz", st.st_size, size);
+               msg_warn ("need to reindex statfile old size: %Hz, new size: %Hz", (size_t)st.st_size, size);
                return statfile_pool_reindex (pool, filename, st.st_size, size);
        }
        else if (size < sizeof (struct stat_file)) {