diff options
author | 2001-07-09 07:02:08 +0000 | |
---|---|---|
committer | 2001-07-09 07:02:08 +0000 | |
commit | c96f6a27c3654d9b37ce17714ba983b42dfbc904 (patch) | |
tree | e0f346e8dbda198bf6f0668e527c29de361f75cd /gnu/usr.bin/cvs/diff/util.c | |
parent | a first pass at -Wall (diff) | |
download | wireguard-openbsd-c96f6a27c3654d9b37ce17714ba983b42dfbc904.tar.xz wireguard-openbsd-c96f6a27c3654d9b37ce17714ba983b42dfbc904.zip |
correct type on last arg to execl(); nordin@cse.ogi.edu
Diffstat (limited to 'gnu/usr.bin/cvs/diff/util.c')
-rw-r--r-- | gnu/usr.bin/cvs/diff/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/cvs/diff/util.c b/gnu/usr.bin/cvs/diff/util.c index ff9cceb8990..28f163c9c4c 100644 --- a/gnu/usr.bin/cvs/diff/util.c +++ b/gnu/usr.bin/cvs/diff/util.c @@ -235,7 +235,7 @@ begin_output () close (pipes[0]); } - execl (PR_PROGRAM, PR_PROGRAM, "-f", "-h", name, 0); + execl (PR_PROGRAM, PR_PROGRAM, "-f", "-h", name, (char *)NULL); pfatal_with_name (PR_PROGRAM); } else |