diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cli_new.c | 2 | ||||
-rw-r--r-- | src/cli_val.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cli_new.c b/src/cli_new.c index d9e1687..34f8af0 100644 --- a/src/cli_new.c +++ b/src/cli_new.c @@ -2103,7 +2103,7 @@ void touch() free(command); } -char *type_to_name(vtw_type_e type) { +const char *type_to_name(vtw_type_e type) { switch(type) { case INT_TYPE: return("u32"); case IPV4_TYPE: return("ipv4"); diff --git a/src/cli_val.h b/src/cli_val.h index c9d59a6..fa30479 100644 --- a/src/cli_val.h +++ b/src/cli_val.h @@ -187,7 +187,7 @@ extern void free_val(valstruct *val); extern void my_free(void *ptr); extern void touch(void); extern void dump_log(int argc, char **argv); -extern char *type_to_name(vtw_type_e type); +extern const char *type_to_name(vtw_type_e type); extern boolean execute_list(vtw_node *cur, vtw_def *def); extern void touch_dir(const char *dp); |