Alexandre Goujon wrote:
dlls/msvcrt/tests/string.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/dlls/msvcrt/tests/string.c b/dlls/msvcrt/tests/string.c index 94c2fa3..3c143d1 100644 --- a/dlls/msvcrt/tests/string.c +++ b/dlls/msvcrt/tests/string.c @@ -1185,22 +1185,22 @@ static void test_mbstowcs(void) mOut[4] = '!'; mOut[5] = '\0';
ret = mbstowcs(NULL, mSimple, 0);
- ok(ret == 4, "ret = %d\n", ret);
- ok(ret == 4, "mbstowcs did not returned 4\n");
Alexandre:
Can we avoid a typo by substituting:
"Did not returned <value>\n"
with
"Did not return <value>\n"
for each instance in the file?
Thank you.
James McKenzie