commit | ae51135ed9c21a7eb428e250a88e387113e212ce | [log] [tgz] |
---|---|---|
author | Mike McCormack <mike@codeweavers.com> | Thu Jun 02 15:11:32 2005 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Thu Jun 02 15:11:32 2005 +0000 |
tree | cbcb67eed554e3e910e15cc50607590b92b4cbdf | |
parent | 44816cebd67b65319df4dd23f9a14f609e0bb1e1 [diff] [blame] |
Fixes for -Wmissing-declarations and -Wwrite-strings warnings.
diff --git a/programs/winhelp/macro.c b/programs/winhelp/macro.c index 71efad4..e34a4dc 100644 --- a/programs/winhelp/macro.c +++ b/programs/winhelp/macro.c
@@ -33,10 +33,10 @@ /* Macro table */ /**************************************************/ struct MacroDesc { - char* name; - char* alias; + const char* name; + const char* alias; BOOL isBool; - char* arguments; + const char* arguments; FARPROC fn; };