summaryrefslogtreecommitdiffstats
path: root/mbbsd/screen.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/screen.c')
-rw-r--r--mbbsd/screen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/screen.c b/mbbsd/screen.c
index 23aa9e71..832abfca 100644
--- a/mbbsd/screen.c
+++ b/mbbsd/screen.c
@@ -1,4 +1,4 @@
-/* $Id: screen.c,v 1.14 2003/01/16 11:53:54 kcwu Exp $ */
+/* $Id: screen.c,v 1.15 2003/05/18 07:31:09 in2 Exp $ */
#include "bbs.h"
#ifdef SUPPORT_GB
@@ -379,7 +379,7 @@ outc(unsigned char ch)
if (ch == 'm') {
buf[p++] = '\0';
parsecolor(buf);
- } else if ((p < sizeof(buf)) && (not_alpha(ch))) {
+ } else if (((size_t)p < sizeof(buf)) && (not_alpha(ch))) {
buf[p++] = ch;
return;
}