summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Janssen <medhefgo@web.de>2013-06-27 16:24:02 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-06-27 10:55:19 -0400
commitaae72d6fa0910891aa446ec43c548512987d453a (patch)
treebed8e5e1ab31bc9fd59129e7bb296e21dd217778
parent3b18ae6866043ac4d96ee9bcada1a42469c80129 (diff)
downloadsystemd-aae72d6fa0910891aa446ec43c548512987d453a.tar.gz
journal-verify: Use proper printf placeholder
-rw-r--r--src/journal/journal-verify.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/journal/journal-verify.c b/src/journal/journal-verify.c
index 781b1ee1de..3405811534 100644
--- a/src/journal/journal-verify.c
+++ b/src/journal/journal-verify.c
@@ -67,7 +67,7 @@ static int journal_file_object_verify(JournalFile *f, uint64_t offset, Object *o
}
if (le64toh(o->object.size) - offsetof(DataObject, payload) <= 0) {
- log_error(OFSfmt": bad object size (<= %"PRIu64"): %"PRIu64,
+ log_error(OFSfmt": bad object size (<= %zu): %"PRIu64,
offset,
offsetof(DataObject, payload),
le64toh(o->object.size));
@@ -120,7 +120,7 @@ static int journal_file_object_verify(JournalFile *f, uint64_t offset, Object *o
case OBJECT_FIELD:
if (le64toh(o->object.size) - offsetof(FieldObject, payload) <= 0) {
- log_error(OFSfmt": bad field size (<= %"PRIu64"): %"PRIu64,
+ log_error(OFSfmt": bad field size (<= %zu): %"PRIu64,
offset,
offsetof(FieldObject, payload),
le64toh(o->object.size));
@@ -139,7 +139,7 @@ static int journal_file_object_verify(JournalFile *f, uint64_t offset, Object *o
case OBJECT_ENTRY:
if ((le64toh(o->object.size) - offsetof(EntryObject, items)) % sizeof(EntryItem) != 0) {
- log_error(OFSfmt": bad entry size (<= %"PRIu64"): %"PRIu64,
+ log_error(OFSfmt": bad entry size (<= %zu): %"PRIu64,
offset,
offsetof(EntryObject, items),
le64toh(o->object.size));