mapi32/tests: Fix typo.

This commit is contained in:
Juan Lang 2009-02-03 11:08:22 -08:00 committed by Alexandre Julliard
parent 0bb1c5648b
commit ea3adf2783
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ static void test_CbOfEncoded(void)
memset(buff, '\0', sizeof(buff));
memset(buff, '?', i);
ulRet = pCbOfEncoded(buff);
ok(ulRet == ulExpected || broken(ulExpected == 0) /* Win9x */,
ok(ulRet == ulExpected || broken(ulRet == 0) /* Win9x */,
"CbOfEncoded(length %d): expected %d, got %d\n",
i, ulExpected, ulRet);
}