diff options
author | Elias Probst <mail@eliasprobst.eu> | 2016-02-29 22:42:43 +0100 |
---|---|---|
committer | Elias Probst <mail@eliasprobst.eu> | 2016-02-29 23:00:21 +0100 |
commit | 82e24b0068feb0dbf6274d889d0368fe4212285f (patch) | |
tree | 55bccf8960d6cc9299a3e93a1049d60d96743e8d /src/journal/sd-journal.c | |
parent | cae027de595c5e1c6750858e91b5805d0e741898 (diff) |
Use `PRIu64` to print `uint64_t` in log msgs
Diffstat (limited to 'src/journal/sd-journal.c')
-rw-r--r-- | src/journal/sd-journal.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c index ac75e39312..3c21d4129e 100644 --- a/src/journal/sd-journal.c +++ b/src/journal/sd-journal.c @@ -19,6 +19,7 @@ #include <errno.h> #include <fcntl.h> +#include <inttypes.h> #include <linux/magic.h> #include <poll.h> #include <stddef.h> @@ -1957,7 +1958,7 @@ _public_ int sd_journal_get_data(sd_journal *j, const char *field, const void ** &f->compress_buffer, &f->compress_buffer_size, field, field_length, '='); if (r < 0) - log_debug_errno(r, "Cannot decompress %s object of length %zu at offset "OFSfmt": %m", + log_debug_errno(r, "Cannot decompress %s object of length %"PRIu64" at offset "OFSfmt": %m", object_compressed_to_string(compression), l, p); else if (r > 0) { |