summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2002-07-21 17:03:00 (GMT)
committerdgp@users.sourceforge.net <dgp>2002-07-21 17:03:00 (GMT)
commitf9f16255de35871f7eb8e51fef049399ba993e3c (patch)
tree9b60832237624ef7ada41573f191df2cb4bc6983
parent3ff100e2dcad7211c5e018785ba0931e6364466c (diff)
downloadtcl-f9f16255de35871f7eb8e51fef049399ba993e3c.zip
tcl-f9f16255de35871f7eb8e51fef049399ba993e3c.tar.gz
tcl-f9f16255de35871f7eb8e51fef049399ba993e3c.tar.bz2
* Silence compiler warning. [Bug 584408]
-rw-r--r--ChangeLog4
-rw-r--r--generic/tclIOUtil.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a8cf94..78b5d44 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-07-21 Don Porter <dgp@users.sourceforge.net>
+
+ * tclIOUtil.c: Silence compiler warning. [Bug 584408].
+
2002-07-19 Vince Darley <vincentdarley@users.sourceforge.net>
* generic/tclIOUtil.c: fix to GetFilesystemRecord
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c
index 242a692..c419727 100644
--- a/generic/tclIOUtil.c
+++ b/generic/tclIOUtil.c
@@ -17,7 +17,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIOUtil.c,v 1.61 2002/07/20 01:01:41 vincentdarley Exp $
+ * RCS: @(#) $Id: tclIOUtil.c,v 1.62 2002/07/21 17:03:00 dgp Exp $
*/
#include "tclInt.h"
@@ -455,7 +455,9 @@ static int filesystemIteratorsInProgress = 0;
*/
static int filesystemWantToModify = 0;
+#ifdef TCL_THREADS
static Tcl_Condition filesystemOkToModify = NULL;
+#endif
TCL_DECLARE_MUTEX(filesystemMutex)