From 2502fc38a34eaf5a146e502a0e87eccfe3283ed9 Mon Sep 17 00:00:00 2001 From: in2 Date: Sun, 18 May 2003 07:31:09 +0000 Subject: warning free git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@863 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/screen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mbbsd/screen.c') 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; } -- cgit v1.2.3