chown: use NULL instead of 0 for null pointer

This commit is contained in:
Ed Maste 2016-10-10 14:21:21 +00:00
parent 21a4258d89
commit cb4fe258b4

View File

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