summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixNotfy.c
diff options
context:
space:
mode:
authordas <das>2008-03-11 22:23:50 (GMT)
committerdas <das>2008-03-11 22:23:50 (GMT)
commit4616e01478bbd4a5be900c2b189614fb039948de (patch)
treec69b59279c4eddf406bca1b06a7ce9da1e688ed5 /unix/tclUnixNotfy.c
parent59b1b83945ed41a450ebe9a8c07ccc6ca6dbfcd0 (diff)
downloadtcl-4616e01478bbd4a5be900c2b189614fb039948de.zip
tcl-4616e01478bbd4a5be900c2b189614fb039948de.tar.gz
tcl-4616e01478bbd4a5be900c2b189614fb039948de.tar.bz2
* unix/tclUnixNotfy.c: fix warning
Diffstat (limited to 'unix/tclUnixNotfy.c')
-rw-r--r--unix/tclUnixNotfy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c
index dba5bd3..a78cabd 100644
--- a/unix/tclUnixNotfy.c
+++ b/unix/tclUnixNotfy.c
@@ -10,7 +10,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.33 2008/02/28 20:12:09 jenglish Exp $
+ * RCS: @(#) $Id: tclUnixNotfy.c,v 1.34 2008/03/11 22:23:50 das Exp $
*/
#include "tclInt.h"
@@ -907,7 +907,7 @@ NotifierThreadProc(
fd_set writableMask;
fd_set exceptionalMask;
int fds[2];
- int i, status, numFdBits = 0, receivePipe;
+ int i, numFdBits = 0, receivePipe;
long found;
struct timeval poll = {0., 0.}, *timePtr;
char buf[2];