aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2009-06-12 17:39:38 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2009-06-12 17:39:38 +0200
commit2dceae6ab748044f5cc611cf66d81147625a4e78 (patch)
tree61edc7c17a2a2f4a226988fb666397ca01f348b0 /openbsc/src
parent8426a83908cf8cdfe230d4ea5c443a273ad48aa4 (diff)
make btstype2str return a const char* to make gcc 4.4 happy
Diffstat (limited to 'openbsc/src')
-rw-r--r--openbsc/src/gsm_data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/gsm_data.c b/openbsc/src/gsm_data.c
index a78425f95..e5e789af2 100644
--- a/openbsc/src/gsm_data.c
+++ b/openbsc/src/gsm_data.c
@@ -174,7 +174,7 @@ enum gsm_bts_type parse_btstype(char *arg)
return GSM_BTS_TYPE_BS11; /* Default: BS11 */
}
-char *btstype2str(enum gsm_bts_type type)
+const char *btstype2str(enum gsm_bts_type type)
{
if (type > ARRAY_SIZE(bts_types))
return "undefined";