diff options
author | Daniel Mack <zonque@gmail.com> | 2014-02-20 17:21:13 +0100 |
---|---|---|
committer | Daniel Mack <zonque@gmail.com> | 2014-02-20 17:21:13 +0100 |
commit | a002d44b008acd309987c37eb48009e3125a532c (patch) | |
tree | 17daabb81e70c2b231f276ad80cd312056ade769 /src/journal/sd-journal.c | |
parent | c94d7fc3cefa16f6b715d469b7aa93c39c649b3c (diff) |
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.
Diffstat (limited to 'src/journal/sd-journal.c')
-rw-r--r-- | src/journal/sd-journal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c index 831ab6b4e9..3740a9a840 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); |