]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
journal: Fix missing parenthesis
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Wed, 29 Jun 2022 10:13:21 +0000 (12:13 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 29 Jun 2022 12:05:23 +0000 (14:05 +0200)
src/libsystemd/sd-journal/journal-verify.c

index 03c79cea1361f7a56883f333435bc0d434ee4983..543d7ed026d92c86874a2456a174bf6808ec9322 100644 (file)
@@ -280,7 +280,7 @@ static int journal_file_object_verify(JournalFile *f, uint64_t offset, Object *o
                         if (le64toh(o->entry.items[i].object_offset) == 0 ||
                             !VALID64(le64toh(o->entry.items[i].object_offset))) {
                                 error(offset,
-                                      "Invalid entry item (%"PRIu64"/%"PRIu64" offset: "OFSfmt,
+                                      "Invalid entry item (%"PRIu64"/%"PRIu64") offset: "OFSfmt,
                                       i, journal_file_entry_n_items(o),
                                       le64toh(o->entry.items[i].object_offset));
                                 return -EBADMSG;