diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-09-11 17:49:24 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-09-11 17:49:24 +0300 |
| commit | 9e2720ca086a74cfb6fa595da8c42e6cd24352ee (patch) | |
| tree | 7ee298e1d30b921c55a1939cb8954ca4cb2fbb56 /include/apos/debug.h | |
| parent | 7101970b3cdb2a0190e69a98352275907ab935a4 (diff) | |
| download | kmi-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.h | 4 |
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__) /** @} */ |
