winedump: Make some data const.
This commit is contained in:
parent
720ab29a7f
commit
1297e859b3
|
@ -597,7 +597,7 @@ struct stab_nlist
|
|||
unsigned long n_value;
|
||||
};
|
||||
|
||||
static const char* stabs_defs[] = {
|
||||
static const char * const stabs_defs[] = {
|
||||
NULL,NULL,NULL,NULL, /* 00 */
|
||||
NULL,NULL,NULL,NULL, /* 08 */
|
||||
NULL,NULL,NULL,NULL, /* 10 */
|
||||
|
|
|
@ -830,7 +830,7 @@ void dump_separate_dbg(void)
|
|||
|
||||
static const char *get_resource_type( unsigned int id )
|
||||
{
|
||||
static const char *types[] =
|
||||
static const char * const types[] =
|
||||
{
|
||||
NULL,
|
||||
"CURSOR",
|
||||
|
|
Loading…
Reference in New Issue