diff options
author | Harald Welte <laforge@gnumonks.org> | 2016-11-11 15:21:52 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2016-11-11 14:49:14 +0000 |
commit | c4193d30e82307b87a7a7bce3ea5ed48f2f2f716 (patch) | |
tree | 2605852ad46bcc6fcc5cad3ae757e43546138dd5 /src | |
parent | 684cf322434e9cadd03773c2d120b9e29a1a1d48 (diff) |
gan: Mark gan_pdisc_vals[] as public / non-static symbol
It is actually listed in libosmogsm.map, but still used to be a static
symbol. That couldn't have worked.
Change-Id: I6f3f04b683d906674ee7da9bab5762bb00cea916
Diffstat (limited to 'src')
-rw-r--r-- | src/gsm/gan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gsm/gan.c b/src/gsm/gan.c index c71c5133..0bcaa175 100644 --- a/src/gsm/gan.c +++ b/src/gsm/gan.c @@ -68,7 +68,7 @@ const struct value_string gan_msgt_vals[] = { { 0, NULL } }; -static const struct value_string gan_pdisc_vals[] = { +const struct value_string gan_pdisc_vals[] = { { GA_PDISC_RC, "RC" }, { GA_PDISC_CSR, "CSR" }, { GA_PDISC_PSR, "PSR" }, |