Commit b84fb597 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

cmd: Remove redundant comparison.

parent 435be368
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment