summaryrefslogtreecommitdiff
path: root/src/journal/compress.c
diff options
context:
space:
mode:
authorElias Probst <mail@eliasprobst.eu>2016-02-29 22:42:43 +0100
committerElias Probst <mail@eliasprobst.eu>2016-02-29 23:00:21 +0100
commit82e24b0068feb0dbf6274d889d0368fe4212285f (patch)
tree55bccf8960d6cc9299a3e93a1049d60d96743e8d /src/journal/compress.c
parentcae027de595c5e1c6750858e91b5805d0e741898 (diff)
Use `PRIu64` to print `uint64_t` in log msgs
Diffstat (limited to 'src/journal/compress.c')
-rw-r--r--src/journal/compress.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/journal/compress.c b/src/journal/compress.c
index 1933b87b00..c43849c46a 100644
--- a/src/journal/compress.c
+++ b/src/journal/compress.c
@@ -17,6 +17,7 @@
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
+#include <inttypes.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
@@ -498,7 +499,7 @@ int compress_stream_lz4(int fdf, int fdt, uint64_t max_bytes) {
total_out += n;
if (max_bytes != (uint64_t) -1 && total_out > (size_t) max_bytes) {
- log_debug("Compressed stream longer than %zd bytes", max_bytes);
+ log_debug("Compressed stream longer than %"PRIu64" bytes", max_bytes);
return -EFBIG;
}
@@ -649,7 +650,7 @@ int decompress_stream_lz4(int in, int out, uint64_t max_bytes) {
total_out += produced;
if (max_bytes != (uint64_t) -1 && total_out > (size_t) max_bytes) {
- log_debug("Decompressed stream longer than %zd bytes", max_bytes);
+ log_debug("Decompressed stream longer than %"PRIu64" bytes", max_bytes);
r = -EFBIG;
goto cleanup;
}