Commit 02e42102 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

cmd: Avoid using the comma operator.

parent 124dbb84
...@@ -505,7 +505,7 @@ WCHAR *WCMD_strip_quotes(WCHAR *cmd) { ...@@ -505,7 +505,7 @@ WCHAR *WCMD_strip_quotes(WCHAR *cmd) {
while((*dest=*src) != '\0') { while((*dest=*src) != '\0') {
if (*src=='\"') if (*src=='\"')
lastq=dest; lastq=dest;
dest++, src++; dest++; src++;
} }
lastquote = lastq; lastquote = lastq;
if (lastq) { if (lastq) {
......
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