cmd: Avoid using the comma operator.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Michael Stefaniuc 2019-03-26 20:41:38 +01:00 committed by Alexandre Julliard
parent 124dbb84b5
commit 02e4210265
1 changed files with 1 additions and 1 deletions

View File

@ -505,7 +505,7 @@ WCHAR *WCMD_strip_quotes(WCHAR *cmd) {
while((*dest=*src) != '\0') {
if (*src=='\"')
lastq=dest;
dest++, src++;
dest++; src++;
}
lastquote = lastq;
if (lastq) {