diff options
author | Joe Mistachkin <joe@mistachkin.com> | 2006-03-17 09:59:54 (GMT) |
---|---|---|
committer | Joe Mistachkin <joe@mistachkin.com> | 2006-03-17 09:59:54 (GMT) |
commit | 02d85fe518c6dc123543ee1aeec7106313fe73ce (patch) | |
tree | db9c1bb3d89698b5cafb1776aea424da0a0545b6 /win/tclWinTest.c | |
parent | 7af63d00e32bf28de28310b58175625841182af7 (diff) | |
download | tcl-02d85fe518c6dc123543ee1aeec7106313fe73ce.zip tcl-02d85fe518c6dc123543ee1aeec7106313fe73ce.tar.gz tcl-02d85fe518c6dc123543ee1aeec7106313fe73ce.tar.bz2 |
Fix compilation error.
Diffstat (limited to 'win/tclWinTest.c')
-rw-r--r-- | win/tclWinTest.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinTest.c b/win/tclWinTest.c index 3d713c9..5edc81c 100644 --- a/win/tclWinTest.c +++ b/win/tclWinTest.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinTest.c,v 1.13 2006/03/14 19:34:33 vincentdarley Exp $ + * RCS: @(#) $Id: tclWinTest.c,v 1.14 2006/03/17 09:59:55 mistachkin Exp $ */ #define USE_COMPAT_CONST @@ -567,7 +567,7 @@ TestplatformChmod(CONST char *nativePath, int pmode) static int initialized = 0; if (!initialized) { - TCL_DECLARE_MUTEX(initialzeMutex) + TCL_DECLARE_MUTEX(initializeMutex) Tcl_MutexLock(&initializeMutex); if (!initialized) { HINSTANCE hInstance = LoadLibrary("Advapi32"); @@ -604,7 +604,7 @@ TestplatformChmod(CONST char *nativePath, int pmode) if (!initialized) initialized = -1; } - Tcl_MutexUnlock(&intializeMutex); + Tcl_MutexUnlock(&initializeMutex); } /* Process the chmod request */ |