about summary refs log tree commit diff homepage
path: root/test/Feature/IndirectCallToExternal.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Feature/IndirectCallToExternal.c')
-rw-r--r--test/Feature/IndirectCallToExternal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Feature/IndirectCallToExternal.c b/test/Feature/IndirectCallToExternal.c
index 03447c7d..2d4943dc 100644
--- a/test/Feature/IndirectCallToExternal.c
+++ b/test/Feature/IndirectCallToExternal.c
@@ -8,7 +8,7 @@
 #include <assert.h>
 
 int main() {
-  int (*scmp)(char*,char*) = strcmp;
+  int (*scmp)(const char *, const char *) = strcmp;
 
   assert(scmp("hello","hi") < 0);