From: Jim Meyering Date: Sun, 25 May 1997 13:00:01 +0000 (+0000) Subject: Remove FIXME. X-Git-Tag: SH-UTILS-1_16a~96 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=54a61c3cf6ab713c18538779e0937daefe973893;p=thirdparty%2Fcoreutils.git Remove FIXME. Add spurious curlies and an empty line. --- diff --git a/src/chgrp.c b/src/chgrp.c index 34bc865468..58cbe4f5a8 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; }