summaryrefslogtreecommitdiff
path: root/kc
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2022-02-09 16:40:54 +0000
committerAda Christine <adachristine18@gmail.com>2022-02-09 16:40:54 +0000
commit4d7c0735964918002d09b792f52d326d2dea374e (patch)
tree63b50dfca1f4514fd12614e907cade3009c68ffe /kc
parentc029add61f430a420e67c08aa79ad05f3a39575e (diff)
small whoops
Diffstat (limited to 'kc')
-rw-r--r--kc/core/kprint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kc/core/kprint.c b/kc/core/kprint.c
index 8989ccd..18b5af9 100644
--- a/kc/core/kprint.c
+++ b/kc/core/kprint.c
@@ -202,7 +202,7 @@ static struct specifier parse_specifier(const char *format, va_list arguments)
switch (*begin)
{
// unexpected EOS
- case '0':
+ case 0:
result.type = INVALID_PRINT;
return result;
case 'c':