diff options
author | Holger Hans Peter Freyther <holger@moiji-mobile.com> | 2013-09-10 11:17:46 +0200 |
---|---|---|
committer | Holger Hans Peter Freyther <holger@moiji-mobile.com> | 2013-09-10 11:17:46 +0200 |
commit | 6ef71b062b9e8ddfcc1cf43aaf4a640a8b21c38e (patch) | |
tree | 9ad72af790fedcde3a3cf9b2b903716d82c0a325 /tests/vty | |
parent | 2349721d801d63f450e585b0938f76abd5150e79 (diff) |
vty: Fix compiler warning in the test
Diffstat (limited to 'tests/vty')
-rw-r--r-- | tests/vty/vty_test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/vty/vty_test.c b/tests/vty/vty_test.c index e54a205a..5f93b3db 100644 --- a/tests/vty/vty_test.c +++ b/tests/vty/vty_test.c @@ -24,6 +24,7 @@ #include <sys/socket.h> #include <sys/un.h> +#include <osmocom/core/application.h> #include <osmocom/core/talloc.h> #include <osmocom/core/logging.h> #include <osmocom/core/utils.h> @@ -31,6 +32,7 @@ #include <osmocom/vty/vty.h> #include <osmocom/vty/command.h> #include <osmocom/vty/buffer.h> +#include <osmocom/vty/logging.h> static enum event last_vty_connection_event = -1; @@ -90,7 +92,6 @@ static void test_node_tree_structure(void) }; struct vty *vty; - vector vline; int sock[2]; printf("Going to test VTY node tree structure\n"); |