diff options
author | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-05-15 01:13:45 +0800 |
---|---|---|
committer | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-05-15 01:13:45 +0800 |
commit | 7e23cd0f57456e78432ee21381767cf07b5d85c4 (patch) | |
tree | 887a9293dc04b9cc0021c53463de1649f20c4a0f /mbbsd/edit.c | |
parent | cb8834089f70235c9732e538b4e686dc0c304025 (diff) | |
download | pttbbs-7e23cd0f57456e78432ee21381767cf07b5d85c4.tar pttbbs-7e23cd0f57456e78432ee21381767cf07b5d85c4.tar.gz pttbbs-7e23cd0f57456e78432ee21381767cf07b5d85c4.tar.bz2 pttbbs-7e23cd0f57456e78432ee21381767cf07b5d85c4.tar.lz pttbbs-7e23cd0f57456e78432ee21381767cf07b5d85c4.tar.xz pttbbs-7e23cd0f57456e78432ee21381767cf07b5d85c4.tar.zst pttbbs-7e23cd0f57456e78432ee21381767cf07b5d85c4.zip |
fix idle a bit
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@171 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/edit.c')
-rw-r--r-- | mbbsd/edit.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mbbsd/edit.c b/mbbsd/edit.c index b062c4ec..f6a14766 100644 --- a/mbbsd/edit.c +++ b/mbbsd/edit.c @@ -1,4 +1,4 @@ -/* $Id: edit.c,v 1.9 2002/05/14 16:04:29 ptt Exp $ */ +/* $Id: edit.c,v 1.10 2002/05/14 17:13:45 ptt Exp $ */ #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -1553,8 +1553,8 @@ int vedit(char *fpath, int saveheader, int *islocal) { int mode0 = currutmp->mode; int destuid0 = currutmp->destuid; unsigned int money=0; - unsigned short int interval=0; - time_t th; + int interval=0; + time_t th=now; textline_t* firstline0 = firstline; textline_t* lastline0 = lastline; @@ -1606,7 +1606,7 @@ int vedit(char *fpath, int saveheader, int *islocal) { strcpy(line, currline->data); ch = igetkey(); /* jochang debug */ - if((interval = (unsigned short int)(now - th))) { + if((interval = (now - th))) { th=now; if((char)ch != last) { money++; |