test-util: remove superfluous const

This commit is contained in:
Thomas Hindoe Paaboel Andersen 2015-02-12 20:32:03 +01:00
parent 8744505aae
commit 76f282c636

View 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));