ChangeSet ID: 21207 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@winehq.org 2005/11/10 05:07:20
Modified files: dlls/dxerr9 : errors.awk dlls/dxerr8 : errors.awk
Log message: Francois Gouget fgouget@free.fr Remove extra backslash that was causing an awk warning.
Patch: http://cvs.winehq.org/patch.py?id=21207
Old revision New revision Changes Path 1.3 1.4 +1 -1 wine/dlls/dxerr9/errors.awk 1.3 1.4 +1 -1 wine/dlls/dxerr8/errors.awk
Index: wine/dlls/dxerr9/errors.awk diff -u -p wine/dlls/dxerr9/errors.awk:1.3 wine/dlls/dxerr9/errors.awk:1.4 --- wine/dlls/dxerr9/errors.awk:1.3 10 Nov 2005 11: 7:20 -0000 +++ wine/dlls/dxerr9/errors.awk 10 Nov 2005 11: 7:20 -0000 @@ -51,7 +51,7 @@ BEGIN { i = 1 len = length(array[word]) + 1 while (i < len) { - if (substr(array[word],i,1) == "'") + if (substr(array[word],i,1) == "'") printf "'\''," else printf "'%s',", substr(array[word],i,1) Index: wine/dlls/dxerr8/errors.awk diff -u -p wine/dlls/dxerr8/errors.awk:1.3 wine/dlls/dxerr8/errors.awk:1.4 --- wine/dlls/dxerr8/errors.awk:1.3 10 Nov 2005 11: 7:20 -0000 +++ wine/dlls/dxerr8/errors.awk 10 Nov 2005 11: 7:20 -0000 @@ -51,7 +51,7 @@ BEGIN { i = 1 len = length(array[word]) + 1 while (i < len) { - if (substr(array[word],i,1) == "'") + if (substr(array[word],i,1) == "'") printf "'\''," else printf "'%s',", substr(array[word],i,1)