aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-11-17 07:37:12 +0300
committerlaforge <laforge@osmocom.org>2021-11-17 20:13:18 +0000
commitce73dda7fbdf387deafc9ed1c8f142723004b73d (patch)
tree193afa5fcb5cf6cdabbc275f05021081dff498c5 /tests
parent.gitignore: add utils/osmo-aka-verify binary (diff)
downloadlibosmocore-ce73dda7fbdf387deafc9ed1c8f142723004b73d.tar.xz
libosmocore-ce73dda7fbdf387deafc9ed1c8f142723004b73d.zip
tests/vty: fix use of GNU 'missing =' extension in designator
Change-Id: I66edb247898594b51cc9d7c1b3d0c60ba66fc637
Diffstat (limited to 'tests')
-rw-r--r--tests/vty/vty_test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/vty/vty_test.c b/tests/vty/vty_test.c
index 1db0d5ce..e068f195 100644
--- a/tests/vty/vty_test.c
+++ b/tests/vty/vty_test.c
@@ -542,9 +542,9 @@ int main(int argc, char **argv)
/* Reserved for libraries */
[VTY_TEST_ATTR_UPPER] = 'X',
/* Reserved for global attribues */
- [VTY_TEST_ATTR_RAFC_DOT] '.',
- [VTY_TEST_ATTR_RAFC_EXCL] '!',
- [VTY_TEST_ATTR_RAFC_AT] '@',
+ [VTY_TEST_ATTR_RAFC_DOT] = '.',
+ [VTY_TEST_ATTR_RAFC_EXCL] = '!',
+ [VTY_TEST_ATTR_RAFC_AT] = '@',
},
};