diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2012-11-16 17:17:21 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2012-11-16 23:26:44 +0100 |
commit | 943aad8ca57a6b5c49c4ea60f9e8c13bf9b20e6c (patch) | |
tree | 94ff8a9dd029b7505a1917b9d781e87b06454f19 /src/journal/catalog.c | |
parent | 92b5814007dc5c9c44e94e717be6f53e24c356c0 (diff) |
journal, shared: fix warnings during compilation on 32 bits
Some filesystem magics are too big to fit in 31 bits,
and are wrapped to negative. f_type is an int on 32 bits, so
it is signed, and we get a warning on comparison.
Diffstat (limited to 'src/journal/catalog.c')
-rw-r--r-- | src/journal/catalog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/catalog.c b/src/journal/catalog.c index 22029da851..2812d5970b 100644 --- a/src/journal/catalog.c +++ b/src/journal/catalog.c @@ -384,7 +384,7 @@ int catalog_update(void) { goto finish; } - log_debug("%s: wrote %u items, with %zu bytes of strings, %zu total size.", + log_debug("%s: wrote %u items, with %zu bytes of strings, %ld total size.", CATALOG_DATABASE, n, sb->len, ftell(w)); free(p); |