diff options
author | Roy Marples <roy@marples.name> | 2007-12-20 15:02:04 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-12-20 15:02:04 +0000 |
commit | c474b810af3a04659be23a745535d612d9f6db4d (patch) | |
tree | 71bb64c7f8afbe583b8758cf4fdca56e2c6cafe1 /src/rc.c | |
parent | 6b37d16a2250e80808ec0b6efa9aa4afeb46a6c3 (diff) |
Constant data and pointers
Diffstat (limited to 'src/rc.c')
-rw-r--r-- | src/rc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -109,8 +109,8 @@ typedef struct pidlist } pidlist_t; static pidlist_t *service_pids = NULL; -static const char *types_n[] = { "needsme", NULL }; -static const char *types_nua[] = { "ineed", "iuse", "iafter", NULL }; +static const char *const types_n[] = { "needsme", NULL }; +static const char *const types_nua[] = { "ineed", "iuse", "iafter", NULL }; static void cleanup (void) { |