From 9aae83fe303801d9481b3b106532fd592a4b5290 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Mon, 8 Aug 2022 16:26:29 +0200 Subject: [PATCH] * src/print.c (struct print_buffer): Revert gratuitous format change. --- src/print.c | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/src/print.c b/src/print.c index 73535550bbf..1c96ec14b86 100644 --- a/src/print.c +++ b/src/print.c @@ -65,17 +65,10 @@ static unsigned int printchar_stdout_last; struct print_buffer { - /* Allocated buffer. */ - char *buffer; - - /* Size of allocated buffer. */ - ptrdiff_t size; - - /* Chars stored in buffer. */ - ptrdiff_t pos; - - /* Bytes stored in buffer. */ - ptrdiff_t pos_byte; + char *buffer; /* Allocated buffer. */ + ptrdiff_t size; /* Size of allocated buffer. */ + ptrdiff_t pos; /* Chars stored in buffer. */ + ptrdiff_t pos_byte; /* Bytes stored in buffer. */ }; /* When printing into a buffer, first we put the text in this -- 2.39.2