gdi32: Remove superfluous cast.

This commit is contained in:
André Hentschel 2013-06-30 15:35:21 +02:00 committed by Alexandre Julliard
parent 49f550e8ed
commit 20bf02910b
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ static BOOL init_opengl(void)
goto failed;
}
}
#define LOAD_FUNCPTR(f) do if (!(p##f = (void *)wine_dlsym( osmesa_handle, #f, buffer, sizeof(buffer) ))) \
#define LOAD_FUNCPTR(f) do if (!(p##f = wine_dlsym( osmesa_handle, #f, buffer, sizeof(buffer) ))) \
{ \
ERR( "%s not found in %s (%s), disabling.\n", #f, SONAME_LIBOSMESA, buffer ); \
goto failed; \