diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-12-01 23:11:06 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-12-01 23:11:06 (GMT) |
commit | 23c757e1987a037c346e5d77c4997c9aaf692b9d (patch) | |
tree | 11a169db3ff1fbc44567e287b9334e703048acba | |
parent | 0a946674cc62f45dd247e5a52df430983de4ec6f (diff) | |
download | tcl-23c757e1987a037c346e5d77c4997c9aaf692b9d.zip tcl-23c757e1987a037c346e5d77c4997c9aaf692b9d.tar.gz tcl-23c757e1987a037c346e5d77c4997c9aaf692b9d.tar.bz2 |
Silence syntax warning by Sun C compiler. [Bug 1840211]
-rw-r--r-- | generic/tclEnv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclEnv.c b/generic/tclEnv.c index 2585d0a..60c0d4d 100644 --- a/generic/tclEnv.c +++ b/generic/tclEnv.c @@ -12,12 +12,12 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclEnv.c,v 1.35 2007/11/19 11:29:57 dkf Exp $ + * RCS: @(#) $Id: tclEnv.c,v 1.36 2007/12/01 23:11:06 dkf Exp $ */ #include "tclInt.h" -TCL_DECLARE_MUTEX(envMutex); /* To serialize access to environ. */ +TCL_DECLARE_MUTEX(envMutex) /* To serialize access to environ. */ static struct { int cacheSize; /* Number of env strings in cache. */ |