changeset 24386:3a8d72016ed7

warning fixes: resource.c: In function 'RES_SizeofResource': resource.c:111: warning: unused variable 'hRsrc32' resource.c: In function 'RES_LoadResource': resource.c:157: warning: unused variable 'hRsrc32'
author diego
date Mon, 10 Sep 2007 13:06:54 +0000
parents b3507ba314e1
children 13dcc81c0013
files loader/resource.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/loader/resource.c	Mon Sep 10 13:03:20 2007 +0000
+++ b/loader/resource.c	Mon Sep 10 13:06:54 2007 +0000
@@ -108,7 +108,7 @@
 static DWORD RES_SizeofResource( HMODULE hModule, HRSRC hRsrc)
 {
     DWORD size = 0;
-    HRSRC hRsrc32;
+//    HRSRC hRsrc32;
 
 //    HMODULE16 hMod16   = MapHModuleLS( hModule );
 //    NE_MODULE *pModule = NE_GetPtr( hMod16 );
@@ -154,7 +154,7 @@
 static HGLOBAL RES_LoadResource( HMODULE hModule, HRSRC hRsrc)
 {
     HGLOBAL hMem = 0;
-    HRSRC hRsrc32;
+//    HRSRC hRsrc32;
     WINE_MODREF *wm = MODULE32_LookupHMODULE( hModule );