Commit dc46cd04 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

winspool.drv: Remove unneeded casts of zero.

parent 34f1e0f0
......@@ -7764,7 +7764,7 @@ static BOOL schedule_pipe(LPCWSTR cmd, LPCWSTR filename)
signal(SIGPIPE, SIG_DFL);
signal(SIGCHLD, SIG_DFL);
execl("/bin/sh", "/bin/sh", "-c", cmdA, (char*)0);
execl("/bin/sh", "/bin/sh", "-c", cmdA, NULL);
_exit(1);
}
......
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