summaryrefslogtreecommitdiffstats
path: root/test/enum.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/enum.c')
-rw-r--r--test/enum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/enum.c b/test/enum.c
index 24f8160..0798e6c 100644
--- a/test/enum.c
+++ b/test/enum.c
@@ -19,7 +19,7 @@
/* Convenience macro for inserting enum values */
#define CPTR(VAR, CONST) ((VAR) = (CONST), &(VAR))
-const char *FILENAME[] = {"enum1", NULL};
+static const char *FILENAME[] = {"enum1", NULL};
typedef enum { E1_RED, E1_GREEN, E1_BLUE, E1_WHITE, E1_BLACK } c_e1;