All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC] btrfs-progs: format-output: remove newline in fmt_end text mode
@ 2021-02-16 16:28 Sidong Yang
  2021-02-17 10:57 ` Filipe Manana
  2021-02-19 21:56 ` David Sterba
  0 siblings, 2 replies; 5+ messages in thread
From: Sidong Yang @ 2021-02-16 16:28 UTC (permalink / raw)
  To: linux-btrfs, dsterba, Filipe Manana; +Cc: Sidong Yang

Remove a code that inserting new line in fmt_end() for text mode.
Old code made a failure in fstest btrfs/006.

Signed-off-by: Sidong Yang <realwakka@gmail.com>
---
Hi, I've just read mail that Filipe written that some failure about fstest.
I'm worried about this patch makes other problem. So make it RFC. Thanks.
---
 common/format-output.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/common/format-output.c b/common/format-output.c
index f5b12548..96e0dfef 100644
--- a/common/format-output.c
+++ b/common/format-output.c
@@ -124,9 +124,7 @@ void fmt_end(struct format_ctx *fctx)
 
 	/* Close, no continuation to print */
 
-	if (bconf.output_format & CMD_FORMAT_TEXT)
-		putchar('\n');
-	else if (bconf.output_format & CMD_FORMAT_JSON) {
+	if (bconf.output_format & CMD_FORMAT_JSON) {
 		fmt_dec_depth(fctx);
 		fmt_separator(fctx);
 		printf("}\n");
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-02-22 15:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-16 16:28 [RFC] btrfs-progs: format-output: remove newline in fmt_end text mode Sidong Yang
2021-02-17 10:57 ` Filipe Manana
2021-02-19 21:56 ` David Sterba
2021-02-20 16:42   ` Sidong Yang
2021-02-22 15:46     ` David Sterba

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.