diff options
| author | Michael Kerrisk <mtk.manpages@gmail.com> | 2018-11-10 07:15:40 +0100 |
|---|---|---|
| committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2018-11-10 07:15:40 +0100 |
| commit | 35f2e598f0651a0f7b8d690a42f25a5374d4c5fb (patch) | |
| tree | 007493aee72bb5278bc5a0a71cb51d68604d4969 /man3/system.3 | |
| parent | 99de80c58ba4d129d619fa0b5bc572472ebec274 (diff) | |
| download | man-pages-35f2e598f0651a0f7b8d690a42f25a5374d4c5fb.tar.gz | |
system.3: Use '(char *) NULL' rather than '(char *) 0'
Reported-by: Jonny Grant <jg@jguk.org>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Diffstat (limited to 'man3/system.3')
| -rw-r--r-- | man3/system.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man3/system.3 b/man3/system.3 index e6da6b7083..19a4d8c201 100644 --- a/man3/system.3 +++ b/man3/system.3 @@ -50,7 +50,7 @@ as follows: .PP .in +4n .EX -execl("/bin/sh", "sh", "-c", command, (char *) 0); +execl("/bin/sh", "sh", "-c", command, (char *) NULL); .EE .in .PP |
