ChangeSet ID: 21310 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@winehq.org 2005/11/17 05:06:06
Modified files: programs/explorer: explorer.c
Log message: Fixed invalid C syntax.
Patch: http://cvs.winehq.org/patch.py?id=21310
Old revision New revision Changes Path 1.1 1.2 +1 -2 wine/programs/explorer/explorer.c
Index: wine/programs/explorer/explorer.c diff -u -p wine/programs/explorer/explorer.c:1.1 wine/programs/explorer/explorer.c:1.2 --- wine/programs/explorer/explorer.c:1.1 17 Nov 2005 11: 6: 6 -0000 +++ wine/programs/explorer/explorer.c 17 Nov 2005 11: 6: 6 -0000 @@ -33,8 +33,7 @@ static int CopyPathString(LPWSTR target, CHAR temp_buf[MAX_PATH]; INT i = 0;
- while isspace(*source) - source++; + while (isspace(*source)) source++;
if (*source == '"') {