Commit e7d62008 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

dbghelp: Make some data const.

parent 0be2a967
...@@ -34,11 +34,11 @@ ...@@ -34,11 +34,11 @@
WINE_DEFAULT_DEBUG_CHANNEL(dbghelp); WINE_DEFAULT_DEBUG_CHANNEL(dbghelp);
static const char* ext[] = {".acm", ".dll", ".drv", ".exe", ".ocx", ".vxd", NULL}; static const char * const ext[] = {".acm", ".dll", ".drv", ".exe", ".ocx", ".vxd", NULL};
static int match_ext(const char* ptr, size_t len) static int match_ext(const char* ptr, size_t len)
{ {
const char**e; const char * const *e;
size_t l; size_t l;
for (e = ext; *e; e++) for (e = ext; *e; e++)
......
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