Fixed bug with % signs in help output (reported by Henning Gerhardt).

This commit is contained in:
Alexandre Julliard 2004-07-30 18:47:55 +00:00
parent e7c40e298f
commit df80b56953
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ char buffer[2048];
if (CompareString (LOCALE_USER_DEFAULT, NORM_IGNORECASE | SORT_STRINGSORT, if (CompareString (LOCALE_USER_DEFAULT, NORM_IGNORECASE | SORT_STRINGSORT,
param1, -1, inbuilt[i], -1) == 2) { param1, -1, inbuilt[i], -1) == 2) {
LoadString (hinst, i, buffer, sizeof(buffer)); LoadString (hinst, i, buffer, sizeof(buffer));
WCMD_output (buffer); WCMD_output_asis (buffer);
return; return;
} }
} }