summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Hindoe Paaboel Andersen <phomes@gmail.com>2015-02-12 20:32:03 +0100
committerThomas Hindoe Paaboel Andersen <phomes@gmail.com>2015-02-12 20:44:11 +0100
commit76f282c636f33b41bdbc93a5b2945945ee0029bf (patch)
tree8ad84d72174b0c651a06bd26105443eb7c49b813
parent8744505aaefad761cba0f0e5afaaf6bcec53906e (diff)
test-util: remove superfluous const
-rw-r--r--src/test/test-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-util.c b/src/test/test-util.c
index 804f522e9..9515a8cbf 100644
--- a/src/test/test-util.c
+++ b/src/test/test-util.c
@@ -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));