Commit aca7f80a authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Remove extra backslash that was causing an awk warning.

parent 9e3c4068
...@@ -51,7 +51,7 @@ BEGIN { ...@@ -51,7 +51,7 @@ BEGIN {
i = 1 i = 1
len = length(array[word]) + 1 len = length(array[word]) + 1
while (i < len) { while (i < len) {
if (substr(array[word],i,1) == "\'") if (substr(array[word],i,1) == "'")
printf "'\\''," printf "'\\'',"
else else
printf "'%s',", substr(array[word],i,1) printf "'%s',", substr(array[word],i,1)
......
...@@ -51,7 +51,7 @@ BEGIN { ...@@ -51,7 +51,7 @@ BEGIN {
i = 1 i = 1
len = length(array[word]) + 1 len = length(array[word]) + 1
while (i < len) { while (i < len) {
if (substr(array[word],i,1) == "\'") if (substr(array[word],i,1) == "'")
printf "'\\''," printf "'\\'',"
else else
printf "'%s',", substr(array[word],i,1) printf "'%s',", substr(array[word],i,1)
......
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