diff options
Diffstat (limited to 'mbbsd/screen.c')
-rw-r--r-- | mbbsd/screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/screen.c b/mbbsd/screen.c index 22838b98..a9089f4e 100644 --- a/mbbsd/screen.c +++ b/mbbsd/screen.c @@ -430,7 +430,7 @@ outmsg(char *msg) { move(b_lines, 0); clrtoeol(); - prints(msg); + outs(msg); } void @@ -450,7 +450,7 @@ mouts(int y, int x, char *str) { move(y, x); clrtoeol(); - prints("%s",str); + outs(str); } void |