diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2013-12-17 20:15:45 +0100 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2013-12-17 20:55:20 +0100 |
commit | 0d647f7f73fa17074a1df81e2bdd00877554e436 (patch) | |
tree | 4a1f45c0e6dae043e368f19d52d766b6ad2ea20c /src/journal | |
parent | c966ef4a7678c4040884a5e644132660e72cd6d9 (diff) |
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.
Diffstat (limited to 'src/journal')
-rw-r--r-- | src/journal/journal-file.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/journal/journal-file.c b/src/journal/journal-file.c index 9e89cb9699..b7e5cf0ab5 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 (;;) { |