=== modified file 't/taplib.c' --- t/taplib.c 2011-03-31 12:42:27 +0000 +++ t/taplib.c 2011-03-31 11:46:06 +0000 @@ -41,7 +41,7 @@ } } -void is_str(const char *got, const char *expect, char *name) +void is_str(char *got, char *expect, char *name) { if(strcmp(got, expect) == 0) ok(1, name); === modified file 't/taplib.h' --- t/taplib.h 2011-03-31 12:42:27 +0000 +++ t/taplib.h 2011-03-31 11:46:06 +0000 @@ -1,5 +1,5 @@ void plan_tests(int n); void ok(int cmp, char *name); void is_int(int got, int expect, char *name); -void is_str(const char *got, const char *expect, char *name); +void is_str(char *got, char *expect, char *name); int exit_status(void);