Commit 5b0bdc23 authored by Rusty Russell's avatar Rusty Russell

antithread: fix -Wwrite-strings warning in test, and trailing whitespace.

parent e5d37823
...@@ -8,7 +8,7 @@ int main(int argc, char *argv[]) ...@@ -8,7 +8,7 @@ int main(int argc, char *argv[])
struct athread *at; struct athread *at;
int err, *pid; int err, *pid;
void *arg; void *arg;
char *bad_args[] = { "/", NULL }; char *bad_args[] = { (char *)"/", NULL };
atp = at_get_pool(&argc, argv, &arg); atp = at_get_pool(&argc, argv, &arg);
if (atp) { if (atp) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment