From ce73dda7fbdf387deafc9ed1c8f142723004b73d Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Wed, 17 Nov 2021 07:37:12 +0300 Subject: [PATCH] tests/vty: fix use of GNU 'missing =' extension in designator Change-Id: I66edb247898594b51cc9d7c1b3d0c60ba66fc637 --- tests/vty/vty_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/vty/vty_test.c b/tests/vty/vty_test.c index 1db0d5ce4..e068f195a 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] = '@', }, };