summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-26 23:17:05 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-26 23:17:05 +0100
commitc19e253c347462bc355ab36240139c8bfa7ef18b (patch)
tree5652d903a677353aad8327d4bf35e8f9c18b242e
parente1677a34840ea225d54d216757172907ebb78c0b (diff)
Typo.
-rw-r--r--os/src/osdebug.c2
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++));
}