diff options
Diffstat (limited to 'stage3/font.c')
-rw-r--r-- | stage3/font.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stage3/font.c b/stage3/font.c index 5af691e..e982aec 100644 --- a/stage3/font.c +++ b/stage3/font.c @@ -95,9 +95,8 @@ void print_char(char c) fix_cursor(); } -void print(char *line) +void print(const char *line) { while (*line != '\0') print_char(*line++); } - |