tests/vty: fix use of GNU 'missing =' extension in designator

Change-Id: I66edb247898594b51cc9d7c1b3d0c60ba66fc637
This commit is contained in:
Vadim Yanitskiy 2021-11-17 07:37:12 +03:00 committed by laforge
parent 433e2ddad1
commit ce73dda7fb
1 changed files with 3 additions and 3 deletions

View File

@ -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] = '@',
},
};