cmd: Remove redundant comparison.
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
435be368e5
commit
b84fb5974f
|
@ -2173,7 +2173,7 @@ void WCMD_for (WCHAR *p, CMD_LIST **cmdList) {
|
|||
}
|
||||
|
||||
/* Ensure line continues with variable */
|
||||
if (!*thisArg || *thisArg != '%') {
|
||||
if (*thisArg != '%') {
|
||||
WCMD_output_stderr (WCMD_LoadMessage(WCMD_SYNTAXERR));
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue