Commit daa5f4bf authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

krnl386.exe16: Constify a variable.

parent 94c0407c
...@@ -1871,9 +1871,9 @@ static HMODULE16 create_dummy_module( HMODULE module32 ) ...@@ -1871,9 +1871,9 @@ static HMODULE16 create_dummy_module( HMODULE module32 )
HMODULE16 hModule; HMODULE16 hModule;
NE_MODULE *pModule; NE_MODULE *pModule;
SEGTABLEENTRY *pSegment; SEGTABLEENTRY *pSegment;
char *pStr,*s; char *pStr;
unsigned int len; unsigned int len;
const char* basename; const char *basename, *s;
OFSTRUCT *ofs; OFSTRUCT *ofs;
int of_size, size; int of_size, size;
char filename[MAX_PATH]; char filename[MAX_PATH];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment