From f11b8c955c270dc4030de58529f2016daa4b91f7 Mon Sep 17 00:00:00 2001 From: Jan Vesely Date: Fri, 27 Feb 2015 11:45:56 -0500 Subject: tests: String literals are const char * Signed-off-by: Jan Vesely Reviewed-by: Emil Velikov --- tests/proptest/proptest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/proptest') diff --git a/tests/proptest/proptest.c b/tests/proptest/proptest.c index 7618f63d..4b7234d2 100644 --- a/tests/proptest/proptest.c +++ b/tests/proptest/proptest.c @@ -303,7 +303,7 @@ static void printUsage(void) int main(int argc, char *argv[]) { - char *modules[] = { "i915", "radeon", "nouveau", "vmwgfx", "omapdrm", "msm" }; + const char *modules[] = { "i915", "radeon", "nouveau", "vmwgfx", "omapdrm", "msm" }; unsigned int i, ret = 0; for (i = 0; i < ARRAY_SIZE(modules); i++){ -- cgit v1.2.3