summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixNotfy.c
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2003-07-16 22:09:46 (GMT)
committerhobbs <hobbs@noemail.net>2003-07-16 22:09:46 (GMT)
commit653576f2538bb205f8e4533ee5893fa6a11e075f (patch)
tree5b0ddec5e0ffadd07784e3f4fe6b333db6e2a2c6 /unix/tclUnixNotfy.c
parentbb1fc3c6d2a0f2b6e9f6e1a731341ba2661ea5dc (diff)
downloadtcl-653576f2538bb205f8e4533ee5893fa6a11e075f.zip
tcl-653576f2538bb205f8e4533ee5893fa6a11e075f.tar.gz
tcl-653576f2538bb205f8e4533ee5893fa6a11e075f.tar.bz2
* unix/tclUnixNotfy.c (NotifierThreadProc): correct size of found
and word vars from int to long. [Bug 767578] (hgo) FossilOrigin-Name: 51f4c501bd140b0169f66a7adad823a6d07d91c9
Diffstat (limited to 'unix/tclUnixNotfy.c')
-rw-r--r--unix/tclUnixNotfy.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c
index 7de3417..0cad280 100644
--- a/unix/tclUnixNotfy.c
+++ b/unix/tclUnixNotfy.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixNotfy.c,v 1.11.2.1 2003/03/21 03:24:09 dgp Exp $
+ * RCS: @(#) $Id: tclUnixNotfy.c,v 1.11.2.2 2003/07/16 22:09:48 hobbs Exp $
*/
#include "tclInt.h"
@@ -862,7 +862,8 @@ NotifierThreadProc(clientData)
fd_mask masks[3*MASK_SIZE];
long *maskPtr = (long *)masks; /* masks[] cast to type long[] */
int fds[2];
- int i, status, index, bit, numFdBits, found, receivePipe, word;
+ int i, status, index, bit, numFdBits, receivePipe;
+ long found, word;
struct timeval poll = {0., 0.}, *timePtr;
int maskSize = 3 * ((MASK_SIZE) / sizeof(long)) * sizeof(fd_mask);
char buf[2];