diff options
Diffstat (limited to 'mbbsd')
-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 832abfca..1f27dd86 100644 --- a/mbbsd/screen.c +++ b/mbbsd/screen.c @@ -1,4 +1,4 @@ -/* $Id: screen.c,v 1.15 2003/05/18 07:31:09 in2 Exp $ */ +/* $Id: screen.c,v 1.16 2003/06/28 08:42:37 kcwu Exp $ */ #include "bbs.h" #ifdef SUPPORT_GB @@ -498,7 +498,7 @@ mprints(int y, int x, char *str) { move(y, x); clrtoeol(); - prints(str); + prints("%s",str); } void |