summaryrefslogtreecommitdiff
path: root/system/alpha/console/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'system/alpha/console/printf.c')
-rw-r--r--system/alpha/console/printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/alpha/console/printf.c b/system/alpha/console/printf.c
index 24efa802e..21a449b2f 100644
--- a/system/alpha/console/printf.c
+++ b/system/alpha/console/printf.c
@@ -219,7 +219,7 @@ FormatItem(const char *f, va_list *ap)
case '-': leftjust = TRUE;
break;
case 'c': {
- char a = va_arg(*ap, char);
+ char a = va_arg(*ap, char *);
if (leftjust) PutChar(a & 0x7f);
if (fieldwidth > 0) PutRepChar(fill, fieldwidth - 1);