diff options
Diffstat (limited to 'lib/tests/test_tcp.c')
-rw-r--r-- | lib/tests/test_tcp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/tests/test_tcp.c b/lib/tests/test_tcp.c index ae6dc1f..114252b 100644 --- a/lib/tests/test_tcp.c +++ b/lib/tests/test_tcp.c | |||
@@ -21,10 +21,11 @@ | |||
21 | #include "tap.h" | 21 | #include "tap.h" |
22 | 22 | ||
23 | int | 23 | int |
24 | main (int argc, char **argv) | 24 | main(void) |
25 | { | 25 | { |
26 | char** server_expect; | 26 | char **server_expect; |
27 | int server_expect_count = 3; | 27 | int server_expect_count = 3; |
28 | |||
28 | plan_tests(9); | 29 | plan_tests(9); |
29 | 30 | ||
30 | server_expect = malloc(sizeof(char*) * server_expect_count); | 31 | server_expect = malloc(sizeof(char*) * server_expect_count); |
@@ -55,4 +56,3 @@ main (int argc, char **argv) | |||
55 | 56 | ||
56 | return exit_status(); | 57 | return exit_status(); |
57 | } | 58 | } |
58 | |||