diff options
Diffstat (limited to 'os')
-rw-r--r-- | os/src/osdebug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/src/osdebug.c b/os/src/osdebug.c index 15aec5b..c3b678f 100644 --- a/os/src/osdebug.c +++ b/os/src/osdebug.c @@ -6,7 +6,7 @@ static const char hex_conv[] = "0123456789ABCDEF"; static void dbgput(const void * _str, int n) { - const char * str = (const char *) str; + const char * str = (const char *) _str; while(n--) BoardConsolePutc(*(str++)); } |