diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2010-06-08 16:12:58 +0800 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2010-06-08 16:12:58 +0800 |
commit | dd19527cd2dc49e34973fdefa24acb2d9939e2c1 (patch) | |
tree | ad5e301a9ab16c194473e46434a84dc6c0ab10a1 | |
parent | 7b4913662aed261f39019c621f52c6e313b76274 (diff) |
vty: Mark app info strings as const char*.
-rw-r--r-- | include/osmocom/vty/vty.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/osmocom/vty/vty.h b/include/osmocom/vty/vty.h index f0174624..e7399ba1 100644 --- a/include/osmocom/vty/vty.h +++ b/include/osmocom/vty/vty.h @@ -128,9 +128,9 @@ static inline char *vty_newline(struct vty *vty) } struct vty_app_info { - char *name; - char *version; - char *copyright; + const char *name; + const char *version; + const char *copyright; void *tall_ctx; enum node_type (*go_parent_cb)(struct vty *vty); }; |