diff options
author | Jim Meyering <jim@meyering.net> | 2000-05-18 21:10:55 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-05-18 21:10:55 +0000 |
commit | b55a5cc86c0aa68ea38ce27946be4012faa08ad9 (patch) | |
tree | 637cb9a018f1cadd22550a8c325bb769099876dd /src | |
parent | 4d453f56915f3e760aaaa0aa31e4ae8d454da413 (diff) | |
download | coreutils-b55a5cc86c0aa68ea38ce27946be4012faa08ad9.tar.xz |
(rm): Combine adjacent fputc and fprintf.
Diffstat (limited to 'src')
-rw-r--r-- | src/remove.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/remove.c b/src/remove.c index 6920cfd92..b49294cf1 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) |