From a002d44b008acd309987c37eb48009e3125a532c Mon Sep 17 00:00:00 2001 From: Daniel Mack Date: Thu, 20 Feb 2014 17:21:13 +0100 Subject: [PATCH] journal: fix compiler warning in real_journal_next() gcc (4.8.2, arm) does not understand that next_beyond_location() will always set 'p' when it returns > 0. Initialize p in order to fix this. --- src/journal/sd-journal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c index 831ab6b4e..3740a9a84 100644 --- a/src/journal/sd-journal.c +++ b/src/journal/sd-journal.c @@ -871,9 +871,9 @@ static int next_beyond_location(sd_journal *j, JournalFile *f, direction_t direc static int real_journal_next(sd_journal *j, direction_t direction) { JournalFile *f, *new_file = NULL; uint64_t new_offset = 0; - Object *o; - uint64_t p; + uint64_t p = 0; Iterator i; + Object *o; int r; assert_return(j, -EINVAL); -- 2.30.2