From 899cb20eb9f5b173a37483c198b3fac9246ef9a7 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 12 Feb 2014 10:28:38 +0100 Subject: [PATCH] inetmib1/tests: Add a trailing '\n' to an ok() call. --- dlls/inetmib1/tests/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/inetmib1/tests/main.c b/dlls/inetmib1/tests/main.c index 29876b18ca8..d7739f1616c 100644 --- a/dlls/inetmib1/tests/main.c +++ b/dlls/inetmib1/tests/main.c @@ -30,7 +30,7 @@ static HMODULE init_test_functions(void) { HMODULE mod = LoadLibraryA("inetmib1"); - ok(mod != NULL, "failed to load inetmib1.dll"); + ok(mod != NULL, "failed to load inetmib1.dll\n"); if (!mod) return NULL;