mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
chown: use NULL instead of 0 for null pointer
This commit is contained in:
parent
21a4258d89
commit
cb4fe258b4
1 changed files with 1 additions and 1 deletions
|
|
@ -159,7 +159,7 @@ main(int argc, char **argv)
|
|||
} else
|
||||
a_gid(*argv);
|
||||
|
||||
if ((ftsp = fts_open(++argv, fts_options, 0)) == NULL)
|
||||
if ((ftsp = fts_open(++argv, fts_options, NULL)) == NULL)
|
||||
err(1, NULL);
|
||||
|
||||
for (rval = 0; (p = fts_read(ftsp)) != NULL;) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue