krnl386.exe16: Constify a variable

Andrew Talbot andrew.talbot at talbotville.com
Mon Aug 22 14:31:43 CDT 2011


Changelog:
    krnl386.exe16: Constify a variable.

diff --git a/dlls/krnl386.exe16/ne_module.c b/dlls/krnl386.exe16/ne_module.c
index a90d90f..95dcab8 100644
--- a/dlls/krnl386.exe16/ne_module.c
+++ b/dlls/krnl386.exe16/ne_module.c
@@ -1871,9 +1871,9 @@ static HMODULE16 create_dummy_module( HMODULE module32 )
     HMODULE16 hModule;
     NE_MODULE *pModule;
     SEGTABLEENTRY *pSegment;
-    char *pStr,*s;
+    char *pStr;
     unsigned int len;
-    const char* basename;
+    const char *basename, *s;
     OFSTRUCT *ofs;
     int of_size, size;
     char filename[MAX_PATH];



More information about the wine-patches mailing list