Mark symtab_t.name in pnp.c as const to fix gcc -Wwrite-strings warnings

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
This commit is contained in:
Alan Coopersmith
2011-12-22 20:54:14 -08:00
parent 8bc8502c69
commit a5126694b2

View File

@@ -61,7 +61,7 @@ typedef struct {
/* symbol table entry */
typedef struct {
char *name;
const char *name;
MouseProtocolID val;
} symtab_t;