diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2011-03-28 14:30:56 +1030 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2011-03-28 14:30:56 +1030 |
commit | ee0626765b8cbf209cece44090e689726ac334ed (patch) | |
tree | c72f722010fbaaed104d4af806a3549f777ed17f | |
parent | 3ad57bc902f31ba347df59de04168f00c626d924 (diff) |
failtest: fix void * arithmetic in example.
-rw-r--r-- | ccan/failtest/_info | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ccan/failtest/_info b/ccan/failtest/_info index 830fce49..3478a02b 100644 --- a/ccan/failtest/_info +++ b/ccan/failtest/_info @@ -27,7 +27,7 @@ * * int main(int argc, char *argv[]) * { - * void *a, *b; + * char *a, *b; * * failtest_init(argc, argv); * plan_tests(3); |