fc00: Fix Dead Store (Dead assignement/Dead increment) Warning found by Clang

Change-Id: I3c494b190f93e9a1d042fa666d4f7037cd69c986
Reviewed-on: https://code.wireshark.org/review/18262
Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
Petri-Dish: Jaap Keuter <jaap.keuter@xs4all.nl>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Alexis La Goutte 2016-10-18 11:13:15 +02:00 committed by Michael Mann
parent 41e9bbac91
commit 47e9345116
1 changed files with 0 additions and 2 deletions

View File

@ -117,8 +117,6 @@ static inline int Base32_encode(guint8* output,
return Base32_TOO_BIG;
}
output[outIndex++] = kChars[work & 31];
bits -= 5;
work >>= 5;
}
if (outIndex < outputLength) {
output[outIndex] = '\0';