]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
sd-journal: add missing bracket in journal verify log message
authorLennart Poettering <lennart@poettering.net>
Thu, 24 Jun 2021 11:13:39 +0000 (13:13 +0200)
committerLennart Poettering <lennart@poettering.net>
Thu, 24 Jun 2021 13:25:29 +0000 (15:25 +0200)
src/libsystemd/sd-journal/journal-verify.c

index 6bc0796f05dc9e5f24fb2cdcf411296b605e5670..d5b49194afa6f2f817696a36b4de7fb08f5b8657 100644 (file)
@@ -170,7 +170,7 @@ static int journal_file_object_verify(JournalFile *f, uint64_t offset, Object *o
                         h2 = journal_file_hash_data(f, o->data.payload, le64toh(o->object.size) - offsetof(Object, data.payload));
 
                 if (h1 != h2) {
-                        error(offset, "Invalid hash (%08"PRIx64" vs. %08"PRIx64, h1, h2);
+                        error(offset, "Invalid hash (%08" PRIx64 " vs. %08" PRIx64 ")", h1, h2);
                         return -EBADMSG;
                 }