From: Jim Meyering Date: Thu, 18 May 2000 21:10:55 +0000 (+0000) Subject: (rm): Combine adjacent fputc and fprintf. X-Git-Tag: FILEUTILS-4_0s~28 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=b55a5cc86c0aa68ea38ce27946be4012faa08ad9;p=thirdparty%2Fcoreutils.git (rm): Combine adjacent fputc and fprintf. --- diff --git a/src/remove.c b/src/remove.c index 6920cfd923..b49294cf12 100644 --- a/src/remove.c +++ b/src/remove.c @@ -857,8 +857,7 @@ This almost certainly means that you have a corrupted file system.\n\ NOTIFY YOUR SYSTEM MANAGER.\n\ The following two directories have the same inode number:\n")); print_nth_dir (stderr, old_ent->depth); - fputc ('\n', stderr); - fprintf (stderr, "%s\n", full_filename (fs->filename)); + fprintf (stderr, "\n%s\n", full_filename (fs->filename)); fflush (stderr); if (x->interactive)