winspool.drv: Remove unneeded casts of zero.

This commit is contained in:
Francois Gouget 2008-12-08 09:23:24 +01:00 committed by Alexandre Julliard
parent 34f1e0f048
commit dc46cd042c
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}