summaryrefslogtreecommitdiff
path: root/src/chgrp.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-05-25 13:00:01 +0000
committerJim Meyering <jim@meyering.net>1997-05-25 13:00:01 +0000
commit54a61c3cf6ab713c18538779e0937daefe973893 (patch)
tree1106d5e47ab4e1b758c891579fea24fa2576b7a8 /src/chgrp.c
parentf735e157e9b053bc69664042c40952e639b30641 (diff)
downloadcoreutils-54a61c3cf6ab713c18538779e0937daefe973893.tar.xz
Remove FIXME.
Add spurious curlies and an empty line.
Diffstat (limited to 'src/chgrp.c')
-rw-r--r--src/chgrp.c5
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;
}