Module: wine Branch: master Commit: eb8ce091cb7b1e94726f47f30c31723cbb5471ae URL: http://source.winehq.org/git/wine.git/?a=commit;h=eb8ce091cb7b1e94726f47f30c...
Author: Francois Gouget fgouget@free.fr Date: Tue Jun 22 17:49:41 2010 +0200
msvcrt/tests: Add a trailing '\n' to an ok() call.
---
dlls/msvcrt/tests/string.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msvcrt/tests/string.c b/dlls/msvcrt/tests/string.c index 1a362a1..b70d777 100644 --- a/dlls/msvcrt/tests/string.c +++ b/dlls/msvcrt/tests/string.c @@ -975,7 +975,7 @@ static void test__strtoi64(void) ok(res == 123, "res != 123\n"); ok(endpos == oct+strlen(oct), "Incorrect endpos (%p-%p)\n", oct, endpos); res = p_strtoi64(blanks, &endpos, 10); - ok(res == 12, "res != 12"); + ok(res == 12, "res != 12\n"); ok(endpos == blanks+10, "Incorrect endpos (%p-%p)\n", blanks, endpos); ok(errno == 0xdeadbeef, "errno = %x\n", errno);