This commit is contained in:
Carsten Haitzler 2014-02-16 22:06:04 +09:00
parent fd30f59365
commit 20dfb1f19a
1 changed files with 0 additions and 2 deletions

View File

@ -39,7 +39,6 @@ _escape_parse(const char *str)
char *d;
const char *s;
printf("conv '%s'\n", str);
for (d = dest, s = str; *s; d++)
{
if (s[0] == '%')
@ -58,7 +57,6 @@ _escape_parse(const char *str)
}
}
*d = 0;
printf("'%s'\n", dest);
return dest;
}