diff options
Diffstat (limited to 'unittest/mytap')
-rw-r--r-- | unittest/mytap/tap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unittest/mytap/tap.c b/unittest/mytap/tap.c index bda234ad71d..68c3333c3aa 100644 --- a/unittest/mytap/tap.c +++ b/unittest/mytap/tap.c @@ -181,7 +181,7 @@ static signal_entry install_signal[]= { int skip_big_tests= 0; void -plan(int const count) +plan(int count) { char *config= getenv("MYTAP_CONFIG"); size_t i; @@ -222,7 +222,7 @@ skip_all(char const *reason, ...) } void -ok(int const pass, char const *fmt, ...) +ok(int pass, char const *fmt, ...) { va_list ap; va_start(ap, fmt); @@ -239,7 +239,7 @@ ok(int const pass, char const *fmt, ...) void -skip(int how_many, char const *const fmt, ...) +skip(int how_many, char const *fmt, ...) { char reason[80]; if (fmt && *fmt) |