Re: msvcrt:string Avoid size_t in ok()
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
On 08/29/2010 02:36 AM, James McKenzie wrote:
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
Sorry for the typo, I guess I wrote it too fast. And no problem, I'll send a try2.
participants (2)
-
GOUJON Alexandre -
James McKenzie