diff options
author | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-05-07 15:39:01 +0800 |
---|---|---|
committer | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-05-07 15:39:01 +0800 |
commit | 4cfc6b121bab9bb2132087c449ddec448851bdcb (patch) | |
tree | fa02c53c4dfde483d2848e4e0e9b7bb00ed07227 /mbbsd | |
parent | b03bddca8a4dec4485184de9dfe87b803f4b190a (diff) | |
download | pttbbs-4cfc6b121bab9bb2132087c449ddec448851bdcb.tar pttbbs-4cfc6b121bab9bb2132087c449ddec448851bdcb.tar.gz pttbbs-4cfc6b121bab9bb2132087c449ddec448851bdcb.tar.bz2 pttbbs-4cfc6b121bab9bb2132087c449ddec448851bdcb.tar.lz pttbbs-4cfc6b121bab9bb2132087c449ddec448851bdcb.tar.xz pttbbs-4cfc6b121bab9bb2132087c449ddec448851bdcb.tar.zst pttbbs-4cfc6b121bab9bb2132087c449ddec448851bdcb.zip |
warning free
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1928 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/board.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c index 48ed65ca..83e10eb2 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -433,7 +433,7 @@ show_brdlist(int head, int clsflag, int newflag) "\033[1;32m", "\033[1;33m"}; char *unread[2] = {"\33[37m \033[m", "\033[1;31m£¾\033[m"}; - char priv, *mark, *favcolor, *brdname, *color, *class, icon, *desc, *bm; + char priv, *mark, *favcolor, *brdname, *color, *class, *icon, *desc, *bm; if (yank_flag == 0 && get_data_number(get_current_fav()) == 0){ // brdnum > 0 ??? @@ -467,6 +467,7 @@ show_brdlist(int head, int clsflag, int newflag) /* special case */ if (unlikely(class_bid == 1)) { prints(" %5d%c%2s%-40.40s ", head, priv, mark, B_BH(ptr)->title + 7); + bm = B_BH(ptr)->BM; goto show_BM; } |