diff options
author | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-04-07 00:52:47 +0800 |
---|---|---|
committer | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-04-07 00:52:47 +0800 |
commit | 64d073d82f1f7e56249a6e20640df55d1c957817 (patch) | |
tree | 731ca9113d8effc0161d7f28fde8e8d01b70abbb /mbbsd/edit.c | |
parent | 66e4d5470f13b816489cea8ec22a7690184b0ae2 (diff) | |
download | pttbbs-64d073d82f1f7e56249a6e20640df55d1c957817.tar pttbbs-64d073d82f1f7e56249a6e20640df55d1c957817.tar.gz pttbbs-64d073d82f1f7e56249a6e20640df55d1c957817.tar.bz2 pttbbs-64d073d82f1f7e56249a6e20640df55d1c957817.tar.lz pttbbs-64d073d82f1f7e56249a6e20640df55d1c957817.tar.xz pttbbs-64d073d82f1f7e56249a6e20640df55d1c957817.tar.zst pttbbs-64d073d82f1f7e56249a6e20640df55d1c957817.zip |
remove unsigned int for money
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1711 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/edit.c')
-rw-r--r-- | mbbsd/edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/edit.c b/mbbsd/edit.c index 6b30ea4e..1f13f64a 100644 --- a/mbbsd/edit.c +++ b/mbbsd/edit.c @@ -1625,7 +1625,7 @@ vedit(char *fpath, int saveheader, int *islocal) int last_margin; int mode0 = currutmp->mode; int destuid0 = currutmp->destuid; - unsigned int money = 0; + int money = 0; int interval = 0; time_t th = now; |