Module: wine Branch: master Commit: 85d970b7c86617164ec6ec55802cf5f13734477e URL: https://source.winehq.org/git/wine.git/?a=commit;h=85d970b7c86617164ec6ec558...
Author: Alex Henrie alexhenrie24@gmail.com Date: Thu Jan 4 22:01:48 2018 -0700
gameux/tests: Add a trailing '\n' to an ok() call.
Signed-off-by: Alex Henrie alexhenrie24@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/gameux/tests/gameexplorer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/gameux/tests/gameexplorer.c b/dlls/gameux/tests/gameexplorer.c index 1ef7a78..05c2a11 100644 --- a/dlls/gameux/tests/gameexplorer.c +++ b/dlls/gameux/tests/gameexplorer.c @@ -454,7 +454,7 @@ static void _findGameInstanceId(int line, ++dwMaxSubKeyLen; /* for string terminator */ lpName = CoTaskMemAlloc(dwMaxSubKeyLen*sizeof(WCHAR)); if(!lpName) hr = E_OUTOFMEMORY; - ok_(__FILE__, line)(SUCCEEDED(hr), "cannot allocate memory for key name"); + ok_(__FILE__, line)(SUCCEEDED(hr), "cannot allocate memory for key name\n"); }
if(SUCCEEDED(hr))