winspool.drv/tests: Fix typo.

This commit is contained in:
Paul Vriens 2006-12-10 11:01:30 +01:00 committed by Alexandre Julliard
parent 1056c881e1
commit c5d2053a7d
1 changed files with 1 additions and 1 deletions

View File

@ -1650,7 +1650,7 @@ static void test_EnumPrinters(void)
ok(num == 0, "num %d\n", num);
SetLastError(0xdeadbeef);
EnumPrintersW(PRINTER_ENUM_LOCAL, NULL, 2, NULL, 0, &neededW, &num);
ret = EnumPrintersW(PRINTER_ENUM_LOCAL, NULL, 2, NULL, 0, &neededW, &num);
ok(ret == 0, "ret %d\n", ret);
ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "gle %d\n", GetLastError());
ok(num == 0, "num %d\n", num);