1
0
mirror of https://github.com/systemd/systemd synced 2025-10-06 00:13:24 +02:00

journal: Fix missing parenthesis

This commit is contained in:
Daan De Meyer
2022-06-29 12:13:21 +02:00
committed by Zbigniew Jędrzejewski-Szmek
parent 840a49f3dc
commit f63d1b0efa

View 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;