chiark / gitweb /
test-util: remove superfluous const
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>
Thu, 12 Feb 2015 19:32:03 +0000 (20:32 +0100)
committerThomas Hindoe Paaboel Andersen <phomes@gmail.com>
Thu, 12 Feb 2015 19:44:11 +0000 (20:44 +0100)
src/test/test-util.c

index 804f522e92b839c44ec280db94adecfdea8fe5b6..9515a8cbf1374da17c814c544716b26ca7fc52d4 100644 (file)
@@ -1237,7 +1237,7 @@ static void test_glob_exists(void) {
 static void test_execute_directory(void) {
         char template_lo[] = "/tmp/test-readlink_and_make_absolute-lo.XXXXXXX";
         char template_hi[] = "/tmp/test-readlink_and_make_absolute-hi.XXXXXXX";
-        const char const* dirs[] = {template_hi, template_lo, NULL};
+        const char * dirs[] = {template_hi, template_lo, NULL};
         const char *name, *name2, *name3, *overridden, *override, *masked, *mask;
 
         assert_se(mkdtemp(template_lo));