diff options
author | Jim Meyering <jim@meyering.net> | 2005-03-28 17:50:54 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-03-28 17:50:54 +0000 |
commit | 47f1cd0d8ae6c2a3a423d0d4e85f9af1658dad63 (patch) | |
tree | e4c353c2af075b8c06f147562663046992fcd0a1 | |
parent | 5f107875c516dff0404a7e44db06b98e9d232951 (diff) | |
download | coreutils-47f1cd0d8ae6c2a3a423d0d4e85f9af1658dad63.tar.xz |
(chopt_init): Use NULL, not `0'.
-rw-r--r-- | src/chown-core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chown-core.c b/src/chown-core.c index 334763e5e..6f1cd327f 100644 --- a/src/chown-core.c +++ b/src/chown-core.c @@ -60,8 +60,8 @@ chopt_init (struct Chown_option *chopt) chopt->affect_symlink_referent = true; chopt->recurse = false; chopt->force_silent = false; - chopt->user_name = 0; - chopt->group_name = 0; + chopt->user_name = NULL; + chopt->group_name = NULL; } extern void |