Module: wine Branch: master Commit: 1b4e61c07accf4f85eadfaa6940d868ebf7c0fee URL: http://source.winehq.org/git/wine.git/?a=commit;h=1b4e61c07accf4f85eadfaa694...
Author: Paul Vriens Paul.Vriens.Wine@gmail.com Date: Tue Mar 3 09:46:25 2009 +0100
shlwapi/tests: Fix a typo.
---
dlls/shlwapi/tests/path.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/shlwapi/tests/path.c b/dlls/shlwapi/tests/path.c index 86c8198..89a61c3 100644 --- a/dlls/shlwapi/tests/path.c +++ b/dlls/shlwapi/tests/path.c @@ -396,7 +396,7 @@ static void test_PathCombineW(void) broken(wszString[0] = 'a'), /* Win95 and some W2K */ "Expected a NULL return\n"); ok (wszString2[0] == 0 || - broken(wszString[0] = 'a'), /* Win95 and some W2K */ + broken(wszString2[0] = 'a'), /* Win95 and some W2K */ "Destination string not empty\n");
HeapFree(GetProcessHeap(), 0, wszString2);