summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordzwdz2021-08-10 15:07:52 +0000
committerdzwdz2021-08-10 15:07:52 +0000
commit0dbd5803e14d72b45ddae17e25bdd84308410f9a (patch)
tree985e00660f3e6ed24f67971ff8dd5632a4fc5142 /src
parent618c73eee71f5790af8d5748f707f2be21099a00 (diff)
fix typo referring to unexistent function
Diffstat (limited to 'src')
-rw-r--r--src/kernel/arch/log.h2
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))