src/succeed/static-array: add missing `const` qualifiers
[deliverable/barectf.git] / tests / tracing / src / succeed / static-array / of-static-array-of-str.c
index 3b6b46120dad057faee2937c17731c8c87711d3c..5523e8e176e0e9e633dbd9ea3a273cba58a03332 100644 (file)
@@ -30,9 +30,9 @@
 int main()
 {
        struct test_platform_ctx *platform_ctx;
-       const char *str1[] = {"Officia", "sit", "labore"};
-       const char *str2[] = {"Excepteur", "labore", "non"};
-       const char * const *array[] = {str1, str2};
+       const char * const str1[] = {"Officia", "sit", "labore"};
+       const char * const str2[] = {"Excepteur", "labore", "non"};
+       const char * const * const array[] = {str1, str2};
 
        platform_ctx = test_platform_init(512);
        assert(platform_ctx);
This page took 0.022068 seconds and 4 git commands to generate.