diff options
author | dzwdz | 2021-08-10 15:07:52 +0000 |
---|---|---|
committer | dzwdz | 2021-08-10 15:07:52 +0000 |
commit | 0dbd5803e14d72b45ddae17e25bdd84308410f9a (patch) | |
tree | 985e00660f3e6ed24f67971ff8dd5632a4fc5142 /src/kernel | |
parent | 618c73eee71f5790af8d5748f707f2be21099a00 (diff) |
fix typo referring to unexistent function
Diffstat (limited to 'src/kernel')
-rw-r--r-- | src/kernel/arch/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/arch/log.h b/src/kernel/arch/log.h index fbef7a5..39c138d 100644 --- a/src/kernel/arch/log.h +++ b/src/kernel/arch/log.h @@ -26,4 +26,4 @@ inline void _tty_hex(const char *buf, size_t len) { // very hacky, shouldn't be actually used - only for debugging // prints backwards -#define _tty_var(var) tty_hex((void*)&var, sizeof(var)) +#define _tty_var(var) _tty_hex((void*)&var, sizeof(var)) |