From: Jim Meyering Date: Mon, 2 Feb 2004 17:33:11 +0000 (+0000) Subject: (do_stat): Remove extra trailing newline from default formats. X-Git-Tag: v5.1.3~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa377fd8c107ae73d0b4ae9c745351c76ba970b8;p=thirdparty%2Fcoreutils.git (do_stat): Remove extra trailing newline from default formats. --- diff --git a/src/stat.c b/src/stat.c index 57442dcbd1..7b3efebc88 100644 --- a/src/stat.c +++ b/src/stat.c @@ -671,7 +671,7 @@ do_stat (char const *filename, int follow_links, int terse, "Device: %Dh/%dd\tInode: %-10i Links: %-5h" " Device type: %t,%T\n" "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n" - "Access: %x\n" "Modify: %y\n" "Change: %z\n"; + "Access: %x\n" "Modify: %y\n" "Change: %z"; } else { @@ -680,7 +680,7 @@ do_stat (char const *filename, int follow_links, int terse, " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n" "Device: %Dh/%dd\tInode: %-10i Links: %h\n" "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n" - "Access: %x\n" "Modify: %y\n" "Change: %z\n"; + "Access: %x\n" "Modify: %y\n" "Change: %z"; } } }