Quakeworld: Nesting level does not match indendation (CID 1159218)

Change-Id: I6d18f103bda6db025eebfc902453256b007dddf7
Reviewed-on: https://code.wireshark.org/review/6556
Reviewed-by: Anders Broman <a.broman58@gmail.com>
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Alexis La Goutte 2015-01-15 19:48:39 +01:00 committed by Michael Mann
parent 3f8fbb7349
commit d009b55b9b
1 changed files with 2 additions and 1 deletions

View File

@ -112,9 +112,10 @@ skipwhite:
/* skip // comments */
if ((c=='/') && (data[1]=='/')) {
while (*data && *data != '\n')
while (*data && *data != '\n'){
data++;
com_token_start++;
}
goto skipwhite;
}