summaryrefslogtreecommitdiff
path: root/src/boot/libc64/aprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot/libc64/aprintf.c')
-rw-r--r--src/boot/libc64/aprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/libc64/aprintf.c b/src/boot/libc64/aprintf.c
index f2bc0c1..8b03219 100644
--- a/src/boot/libc64/aprintf.c
+++ b/src/boot/libc64/aprintf.c
@@ -1,7 +1,7 @@
#include "libc64/aprintf.h"
s32 vaprintf(PrintCallback* func, const char* fmt, va_list ap) {
- return _Printf((outfun*)*func, (char*)func, fmt, ap);
+ return _Printf(*func, func, fmt, ap);
}
s32 aprintf(PrintCallback* func, const char* fmt, ...) {