Changed a struct to use const char *'s to remove a compilation warning.

This commit is contained in:
batrick 2008-09-03 22:27:24 +00:00
parent cc8f9133ae
commit fa034c1ac9

View file

@ -430,7 +430,7 @@ int init_updatedb (lua_State *L)
}
typedef struct extensional_category {
char *category;
const char *category;
int option;
} extensional_category;