summaryrefslogtreecommitdiffstats
path: root/win/tclWinInit.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2004-06-17 19:41:45 (GMT)
committerdgp <dgp@users.sourceforge.net>2004-06-17 19:41:45 (GMT)
commitf75c649ae374b3859584280866dcff801f5835f3 (patch)
treea94a1c3393eba190e4e5294df994bb81d9edda49 /win/tclWinInit.c
parent78205c5188c5bc883fec229e252334d21530dc51 (diff)
downloadtcl-f75c649ae374b3859584280866dcff801f5835f3.zip
tcl-f75c649ae374b3859584280866dcff801f5835f3.tar.gz
tcl-f75c649ae374b3859584280866dcff801f5835f3.tar.bz2
more compiler fixes
Diffstat (limited to 'win/tclWinInit.c')
-rw-r--r--win/tclWinInit.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/win/tclWinInit.c b/win/tclWinInit.c
index bc58859..824a8eb 100644
--- a/win/tclWinInit.c
+++ b/win/tclWinInit.c
@@ -7,7 +7,7 @@
* Copyright (c) 1998-1999 by Scriptics Corporation.
* All rights reserved.
*
- * RCS: @(#) $Id: tclWinInit.c,v 1.50 2004/06/17 19:37:30 dgp Exp $
+ * RCS: @(#) $Id: tclWinInit.c,v 1.51 2004/06/17 19:41:45 dgp Exp $
*/
#include "tclWinInt.h"
@@ -202,8 +202,6 @@ SetDefaultLibraryDir(directory)
static Tcl_Obj *
GetDefaultLibraryDir()
{
- int numBytes;
- CONST char *bytes;
Tcl_Obj **savedDirectoryPtr = (Tcl_Obj **)
Tcl_GetThreadData(&defaultLibraryDirKey, (int)sizeof(Tcl_Obj *));
@@ -304,7 +302,7 @@ TclpInitLibraryPath(path)
/* the path to the executable name. */
{
#define LIBRARY_SIZE 32
- Tcl_Obj *pathPtr, *objPtr, objv[];
+ Tcl_Obj *pathPtr, *objPtr, **objv;
CONST char *str;
Tcl_DString ds;
int objc, pathc;