summaryrefslogtreecommitdiffstats
path: root/mbbsd/go.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-06-08 20:11:03 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-06-08 20:11:03 +0800
commitb8b8c55600841d87c464f5877559351a970cd965 (patch)
tree260182182f9ccf5724db286c92eabe40dbd81c74 /mbbsd/go.c
parent71f79c7083cc15749079d7241ca46f186f304012 (diff)
downloadpttbbs-b8b8c55600841d87c464f5877559351a970cd965.tar
pttbbs-b8b8c55600841d87c464f5877559351a970cd965.tar.gz
pttbbs-b8b8c55600841d87c464f5877559351a970cd965.tar.bz2
pttbbs-b8b8c55600841d87c464f5877559351a970cd965.tar.lz
pttbbs-b8b8c55600841d87c464f5877559351a970cd965.tar.xz
pttbbs-b8b8c55600841d87c464f5877559351a970cd965.tar.zst
pttbbs-b8b8c55600841d87c464f5877559351a970cd965.zip
eliminate warnings
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2804 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/go.c')
-rw-r--r--mbbsd/go.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/go.c b/mbbsd/go.c
index 9cf1e0ac..e3bc0418 100644
--- a/mbbsd/go.c
+++ b/mbbsd/go.c
@@ -837,7 +837,7 @@ gochess(int fd)
int n;
//move(5, 46);
n = sprintf(buf, ANSI_MOVETO(6,47) "%s ¤è®É¶¡¡G%02d:%02d ",
- bw_chess[gd.me - 1], mtime / 60, mtime % 60);
+ bw_chess[gd.me - 1], (int)mtime / 60, (int)mtime % 60);
if (mhand <= 25)
n += sprintf(buf + n, "%2d ¤â", 25 - mhand);
output(buf, n);