From: Thomas Hindoe Paaboel Andersen Date: Tue, 17 Dec 2013 19:15:45 +0000 (+0100) Subject: journal-file.c: remove redundant assignment of variable X-Git-Tag: v209~852 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=0d647f7f73fa17074a1df81e2bdd00877554e436;ds=sidebyside journal-file.c: remove redundant assignment of variable we also do 'last_index = (uint64_t) -1;' at the end of the while loop so there is no reason to also do it here. --- diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c index 9e89cb969..b7e5cf0ab 100644 --- a/src/journal/journal-file.c +++ b/src/journal/journal-file.c @@ -1628,8 +1628,6 @@ static int generic_array_bisect( else left = y + 1; } - - last_index = (uint64_t) -1; } for (;;) {