aboutsummaryrefslogtreecommitdiff
path: root/t/taplib.c
diff options
context:
space:
mode:
Diffstat (limited to 't/taplib.c')
-rw-r--r--t/taplib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/taplib.c b/t/taplib.c
index 256523f..5c23a6e 100644
--- a/t/taplib.c
+++ b/t/taplib.c
@@ -41,7 +41,7 @@ void is_int(int got, int expect, char *name)
}
}
-void is_str(char *got, char *expect, char *name)
+void is_str(const char *got, const char *expect, char *name)
{
if(strcmp(got, expect) == 0)
ok(1, name);