dbghelp: Make some data const.

This commit is contained in:
Dmitry Timoshkov 2006-12-14 22:46:48 +08:00 committed by Alexandre Julliard
parent 0be2a967dc
commit e7d620081f
1 changed files with 2 additions and 2 deletions

View File

@ -34,11 +34,11 @@
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)
{
const char**e;
const char * const *e;
size_t l;
for (e = ext; *e; e++)