aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2009-11-22 18:01:42 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2009-11-22 18:01:42 +0100
commitfdd0ddf7e9eb6a8a7de8021678287b3d1677a070 (patch)
tree8e58bd658a728df6758bed05b4d453498083b4c9
parent4642d4917f0ced8ddf47d7f58a7d9e2ae2d23d24 (diff)
[sms] Fix compile warning by including gsm_data.h
In file included from sms_test.c:27: ../../include/openbsc/gsm_utils.h:33: warning: `enum gsm_band' declared inside parameter list ../../include/openbsc/gsm_utils.h:33: warning: its scope is only this definition or declaration, which is probably not what you want ../../include/openbsc/gsm_utils.h:34: warning: `enum gsm_band' declared inside parameter list
-rw-r--r--openbsc/tests/sms/sms_test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/openbsc/tests/sms/sms_test.c b/openbsc/tests/sms/sms_test.c
index fa0963644..2ce2cc6c4 100644
--- a/openbsc/tests/sms/sms_test.c
+++ b/openbsc/tests/sms/sms_test.c
@@ -24,6 +24,7 @@
#include <sys/types.h>
#include <openbsc/debug.h>
#include <openbsc/msgb.h>
+#include <openbsc/gsm_data.h>
#include <openbsc/gsm_utils.h>
int main(int argc, char** argv)