From a86566cb919a4e436894678fa643ab1af78a0cb8 Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Tue, 3 Mar 2009 21:42:32 +0100 Subject: [PATCH] shlwapi/tests: Fix some typos. --- dlls/shlwapi/tests/path.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/shlwapi/tests/path.c b/dlls/shlwapi/tests/path.c index 89a61c3ec15..52eee2d7c8e 100644 --- a/dlls/shlwapi/tests/path.c +++ b/dlls/shlwapi/tests/path.c @@ -393,10 +393,10 @@ static void test_PathCombineW(void) wszString2[0] = 'a'; wszString = pPathCombineW(wszString2, NULL, NULL); ok (wszString == NULL || - broken(wszString[0] = 'a'), /* Win95 and some W2K */ + broken(wszString[0] == 'a'), /* Win95 and some W2K */ "Expected a NULL return\n"); ok (wszString2[0] == 0 || - broken(wszString2[0] = 'a'), /* Win95 and some W2K */ + broken(wszString2[0] == 'a'), /* Win95 and some W2K */ "Destination string not empty\n"); HeapFree(GetProcessHeap(), 0, wszString2); @@ -411,7 +411,7 @@ static void test_PathCombineW(void) wszString = pPathCombineW(wbuf, wstr1, wstr2); ok(wszString == NULL, "Expected a NULL return\n"); ok(wbuf[0] == 0 || - broken(wbuf[0] = 0xbfbf), /* Win95 and some W2K */ + broken(wbuf[0] == 0xbfbf), /* Win95 and some W2K */ "Buffer contains data\n"); /* PathCombineW can be used in place */ -- 2.11.4.GIT