mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
kernel32/tests: Simplify a test function's parameters.
This commit is contained in:
parent
c9f116a56f
commit
1571c05ad5
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue