Commit 5ec2db92 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

The GCC people are getting ridiculous.

parent cb61c369
......@@ -242,7 +242,8 @@ cleaner_setup(void)
pp = fork();
assert(pp >= 0);
if (pp == 0)
exit(execl("/bin/rm", "rm", "-rf", buf, NULL));
exit(execl(
"/bin/rm", "rm", "-rf", buf, (char*)0));
assert(waitpid(pp, &st, 0) == pp);
AZ(st);
}
......
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