aboutsummaryrefslogtreecommitdiff
path: root/include/apos/debug.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-09-11 17:49:24 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2022-09-11 17:49:24 +0300
commit9e2720ca086a74cfb6fa595da8c42e6cd24352ee (patch)
tree7ee298e1d30b921c55a1939cb8954ca4cb2fbb56 /include/apos/debug.h
parent7101970b3cdb2a0190e69a98352275907ab935a4 (diff)
downloadkmi-9e2720ca086a74cfb6fa595da8c42e6cd24352ee.tar.gz
kmi-9e2720ca086a74cfb6fa595da8c42e6cd24352ee.zip
change external directory structure
+ Prepare for possibly testing rv32 + Also remove newline from debugging output
Diffstat (limited to 'include/apos/debug.h')
-rw-r--r--include/apos/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apos/debug.h b/include/apos/debug.h
index 6d428fe..e7172f5 100644
--- a/include/apos/debug.h
+++ b/include/apos/debug.h
@@ -357,13 +357,13 @@ void setup_io_dbg(struct vmem *vmem);
* Format to append to helper debugging classes.
* See \ref bug(), \ref warn(), \ref info() and \ref error().
*/
-#define COMMON_FORMAT "[%s] %s:%d\n\t"
+#define COMMON_FORMAT "[%s] %s: "
/**
* Helper for helper classes.
* See \ref bug(), \ref warn(), \ref info(), \ref error().
*/
-#define COMMON_ARGS(s) s, __FILE__, __LINE__
+#define COMMON_ARGS(s) s, __FILE__ ":" QUOTE( __LINE__)
/** @} */