diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-07-29 09:31:20 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-07-29 09:31:20 -0700 |
commit | 4215394e00c9c6e9d36293112f30b1ed45654b71 (patch) | |
tree | 1fe23acab1b385ccee11cd330cb063d95309e0c1 /src/cli_new.c | |
parent | 556eeaec4e31814fd62d2c1394958ab4e7887e79 (diff) | |
download | vyatta-cfg-4215394e00c9c6e9d36293112f30b1ed45654b71.tar.gz vyatta-cfg-4215394e00c9c6e9d36293112f30b1ed45654b71.zip |
type_to_name returns immutable string
Don't want accidental errors
Diffstat (limited to 'src/cli_new.c')
-rw-r--r-- | src/cli_new.c | 2 |
1 files changed, 1 insertions, 1 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"); |