kernel32/tests: Simplify a test function's parameters.

This commit is contained in:
Andrew Nguyen 2009-01-18 23:51:14 -06:00 committed by Alexandre Julliard
parent c9f116a56f
commit 1571c05ad5

View file

@ -173,7 +173,7 @@ static void testCursorInfo(HANDLE hCon)
ERROR_INVALID_ACCESS, GetLastError());
}
static void testWriteSimple(HANDLE hCon, COORD sbSize)
static void testWriteSimple(HANDLE hCon)
{
COORD c;
DWORD len;
@ -407,7 +407,7 @@ static void testWrite(HANDLE hCon, COORD sbSize)
/* FIXME: should in fact insure that the sb is at least 10 character wide */
ok(SetConsoleTextAttribute(hCon, TEST_ATTRIB), "Setting default text color\n");
resetContent(hCon, sbSize, FALSE);
testWriteSimple(hCon, sbSize);
testWriteSimple(hCon);
resetContent(hCon, sbSize, FALSE);
testWriteNotWrappedNotProcessed(hCon, sbSize);
resetContent(hCon, sbSize, FALSE);