summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2014-11-02 18:54:55 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-11-02 18:54:55 -0600
commitc58f90bfe8c0dfc7d4aa143d43d1eea1f4be59f8 (patch)
treeb38313f91597383f36284f528ca032958610ceba
parentlibcpu/bfin/clock/tod.h: Delete - missed on previous commits (diff)
downloadrtems-c58f90bfe8c0dfc7d4aa143d43d1eea1f4be59f8.tar.bz2
dl01/dl-load.c: Add missing const
-rw-r--r--testsuites/libtests/dl01/dl-load.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/libtests/dl01/dl-load.c b/testsuites/libtests/dl01/dl-load.c
index cd63cc5953..e8f84bd5b5 100644
--- a/testsuites/libtests/dl01/dl-load.c
+++ b/testsuites/libtests/dl01/dl-load.c
@@ -12,7 +12,7 @@
#include "dl-load.h"
-typedef int (*call_t)(int argc, char* argv[]);
+typedef int (*call_t)(int argc, const char* argv[]);
static const char* call_1[] = { "Line 1", "Line 2" };