From d4ee3a158abeb36314e62b9c67de2b13c7b60e8b Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Thu, 28 Apr 2022 16:28:51 +0100 Subject: [PATCH] eina bt - it seems tab plus space doesnt produce always a space fix as this is machine-read ... a single space will do and will produce the right format. @fix --- src/lib/eina/eina_debug_bt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/eina/eina_debug_bt.c b/src/lib/eina/eina_debug_bt.c index 69e5c608fd..34623d05fd 100644 --- a/src/lib/eina/eina_debug_bt.c +++ b/src/lib/eina/eina_debug_bt.c @@ -138,8 +138,8 @@ _eina_debug_dump_fhandle_bt(FILE *f, void **bt, int btlen) } // rely on normal libc buffering for file ops to avoid syscalls. // may or may not be a good idea. good enough for now. - if (file) fprintf(f, "%s\t 0x%llx 0x%llx\n", file, offset, base); - else fprintf(f, "??\t -\n"); + if (file) fprintf(f, "%s 0x%llx 0x%llx\n", file, offset, base); + else fprintf(f, "?? -\n"); } #else (void)f;