diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2007-12-09 12:12:22 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2007-12-09 12:12:22 +0800 |
commit | 7c4e45fc0c42d52393b0eb532945f3b55236470d (patch) | |
tree | fe3e65900160d4f5cf83d4ac205d63cefe37b621 /mbbsd | |
parent | 99e5c63042e2e4d94477b904be2a8986ab6795f0 (diff) | |
download | pttbbs-7c4e45fc0c42d52393b0eb532945f3b55236470d.tar pttbbs-7c4e45fc0c42d52393b0eb532945f3b55236470d.tar.gz pttbbs-7c4e45fc0c42d52393b0eb532945f3b55236470d.tar.bz2 pttbbs-7c4e45fc0c42d52393b0eb532945f3b55236470d.tar.lz pttbbs-7c4e45fc0c42d52393b0eb532945f3b55236470d.tar.xz pttbbs-7c4e45fc0c42d52393b0eb532945f3b55236470d.tar.zst pttbbs-7c4e45fc0c42d52393b0eb532945f3b55236470d.zip |
b_config: fix const error
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3655 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/bbs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c index 657ad486..52c175c1 100644 --- a/mbbsd/bbs.c +++ b/mbbsd/bbs.c @@ -3328,7 +3328,7 @@ b_config(void) boardheader_t *bp=NULL; int touched = 0, finished = 0; bp = getbcache(currbid); - const int ytitle = b_lines - 15; + int ytitle = b_lines - 15; int i = 0; #ifndef OLDRECOMMEND |