rasapi32/tests: Remove superfluous void* cast.

This commit is contained in:
Marcin Baczyński 2010-01-06 23:38:31 +01:00 committed by Alexandre Julliard
parent 005b9066f4
commit 0666c8e4ec

View file

@ -67,7 +67,7 @@ static void test_rasenum(void)
ok(result == ERROR_BUFFER_TOO_SMALL,
"Expected ERROR_BUFFER_TOO_SMALL, got %08d\n", result);
rasDevInfo = (LPRASDEVINFO) HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
rasDevInfo = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
max(bufsize,sizeof(RASDEVINFOA)));
if(!rasDevInfo) {
win_skip("failed to allocate buffer for RasEnumDevicesA tests\n");