From: Martin Liška Date: Wed, 17 Dec 2025 14:39:05 +0000 (+0100) Subject: readelf: gcc_except_table: add newline in output X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de1594c5ed382119255079e23022dc35aab85824;p=thirdparty%2Felfutils.git readelf: gcc_except_table: add newline in output Fixes: ``` TType table: [ 3] 0x23a4 [ 2] 0x23a8 [ 1] 0x23ac ``` to: ``` TType table: [ 3] 0x23a4 [ 2] 0x23a8 [ 1] 0x23ac ``` ChangeLog: * src/readelf.c (print_debug_exception_table): Add newline after TType table header. Signed-off-by: Martin Liska --- diff --git a/src/readelf.c b/src/readelf.c index 4faf0405..5db86f0a 100644 --- a/src/readelf.c +++ b/src/readelf.c @@ -11794,7 +11794,7 @@ print_debug_exception_table (Dwfl_Module *dwflmod __attribute__ ((unused)), if (max_ar_filter > 0 && ttype_base != NULL) { unsigned char dsize; - fputs ("\n TType table:", out); + fputs ("\n TType table:\n", out); // XXX Not *4, size of encoding; switch (ttype_encoding & 7)