summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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':