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
This commit is contained in:
Carsten Haitzler 2022-04-28 16:28:51 +01:00
parent 685bf2b0c1
commit 4693321144
1 changed files with 2 additions and 2 deletions

View File

@ -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;