diff options
author | Jim Meyering <jim@meyering.net> | 1997-05-25 13:00:01 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-05-25 13:00:01 +0000 |
commit | 54a61c3cf6ab713c18538779e0937daefe973893 (patch) | |
tree | 1106d5e47ab4e1b758c891579fea24fa2576b7a8 | |
parent | f735e157e9b053bc69664042c40952e639b30641 (diff) | |
download | coreutils-54a61c3cf6ab713c18538779e0937daefe973893.tar.xz |
Remove FIXME.
Add spurious curlies and an empty line.
-rw-r--r-- | src/chgrp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/chgrp.c b/src/chgrp.c index 34bc86546..58cbe4f5a 100644 --- a/src/chgrp.c +++ b/src/chgrp.c @@ -207,10 +207,13 @@ change_file_group (const char *file, int group) } } else if (verbose && changes_only == 0) - describe_change (file, 0); + { + describe_change (file, 0); + } if (recurse && S_ISDIR (file_stats.st_mode)) errors |= change_dir_group (file, group, &file_stats); + return errors; } |