Andrew Talbot : krnl386.exe16: Constify a variable.

Alexandre Julliard julliard at winehq.org
Tue Aug 23 12:45:02 CDT 2011


Module: wine
Branch: master
Commit: daa5f4bf1506e8cd4dfaa10b60b48c72a07d7d0c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=daa5f4bf1506e8cd4dfaa10b60b48c72a07d7d0c

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Mon Aug 22 20:31:43 2011 +0100

krnl386.exe16: Constify a variable.

---

 dlls/krnl386.exe16/ne_module.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

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-cvs mailing list