mirror of https://github.com/mpv-player/mpv
Comment out unused variables, fixes the warnings:
resource.c:117: warning: unused variable 'wm' resource.c:140: warning: unused variable 'wm' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25825 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
8c3a19d8a8
commit
67ce080c24
|
@ -114,7 +114,7 @@ static DWORD RES_SizeofResource( HMODULE hModule, HRSRC hRsrc)
|
|||
// NE_MODULE *pModule = NE_GetPtr( hMod16 );
|
||||
// WINE_MODREF *wm = pModule && pModule->module32?
|
||||
// MODULE32_LookupHMODULE( pModule->module32 ) : NULL;
|
||||
WINE_MODREF *wm = MODULE32_LookupHMODULE( hModule );
|
||||
// WINE_MODREF *wm = MODULE32_LookupHMODULE( hModule );
|
||||
|
||||
if ( !hModule || !hRsrc ) return 0;
|
||||
|
||||
|
@ -137,7 +137,7 @@ static HFILE RES_AccessResource( HMODULE hModule, HRSRC hRsrc )
|
|||
{
|
||||
HFILE hFile = HFILE_ERROR;
|
||||
|
||||
WINE_MODREF *wm = MODULE32_LookupHMODULE( hModule );
|
||||
// WINE_MODREF *wm = MODULE32_LookupHMODULE( hModule );
|
||||
|
||||
if ( !hModule || !hRsrc ) return HFILE_ERROR;
|
||||
|
||||
|
|
Loading…
Reference in New Issue