summaryrefslogtreecommitdiff
path: root/stage3/font.c
diff options
context:
space:
mode:
authorLizzy Fleckenstein <eliasfleckenstein@web.de>2023-11-29 15:50:24 +0100
committerLizzy Fleckenstein <eliasfleckenstein@web.de>2023-11-29 15:50:24 +0100
commitfa439f4c94f20e7e4580a0436475efa4f2d24383 (patch)
treef5df900e87f90b4f9030331f0061d7e6943bcf6f /stage3/font.c
parentd28a735edcc617d623d4e40401b9c832adefe7d7 (diff)
downloadcuddles-fa439f4c94f20e7e4580a0436475efa4f2d24383.tar.xz
make print take const char
Diffstat (limited to 'stage3/font.c')
-rw-r--r--stage3/font.c3
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++);
}
-