summaryrefslogtreecommitdiff
path: root/src/journal
diff options
context:
space:
mode:
authorDaniel Mack <zonque@gmail.com>2014-02-20 17:21:13 +0100
committerDaniel Mack <zonque@gmail.com>2014-02-20 17:21:13 +0100
commita002d44b008acd309987c37eb48009e3125a532c (patch)
tree17daabb81e70c2b231f276ad80cd312056ade769 /src/journal
parentc94d7fc3cefa16f6b715d469b7aa93c39c649b3c (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')
-rw-r--r--src/journal/sd-journal.c4
1 files 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);