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:
Andrey Gusev 2018-01-09 13:25:09 +02:00 committed by Alexandre Julliard
parent 435be368e5
commit b84fb5974f
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}