This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch v-1.26.0
in repository efl.
View the commit online.
commit 46933211444f3ee354919ee416903ac81082e6f8
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Thu Apr 28 16:28:51 2022 +0100
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;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.