summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixInit.c
diff options
context:
space:
mode:
authordas <das>2007-11-10 20:49:21 (GMT)
committerdas <das>2007-11-10 20:49:21 (GMT)
commite607cd1ab59a2a4185647ec4f6831ca1d9781535 (patch)
tree6a8fd13efe5ad7331505c8b8dd04bdcf3d260c00 /unix/tclUnixInit.c
parente623ff4e6ad3a35bd8b2acbb416e56981286400a (diff)
downloadtcl-e607cd1ab59a2a4185647ec4f6831ca1d9781535.zip
tcl-e607cd1ab59a2a4185647ec4f6831ca1d9781535.tar.gz
tcl-e607cd1ab59a2a4185647ec4f6831ca1d9781535.tar.bz2
fix typos
Diffstat (limited to 'unix/tclUnixInit.c')
-rw-r--r--unix/tclUnixInit.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c
index 86edc38..e4ba0f2 100644
--- a/unix/tclUnixInit.c
+++ b/unix/tclUnixInit.c
@@ -7,7 +7,7 @@
* Copyright (c) 1999 by Scriptics Corporation.
* All rights reserved.
*
- * RCS: @(#) $Id: tclUnixInit.c,v 1.76 2007/11/10 19:01:35 msofer Exp $
+ * RCS: @(#) $Id: tclUnixInit.c,v 1.77 2007/11/10 20:49:21 das Exp $
*/
#include "tclInt.h"
@@ -81,7 +81,7 @@ typedef struct ThreadSpecificData {
int *stackBound; /* The current stack boundary */
} ThreadSpecificData;
static Tcl_ThreadDataKey dataKey;
-static stackGrowsDown = -1;
+static int stackGrowsDown = -1;
static int StackGrowsDown(int *parent);
#endif /* TCL_NO_STACK_CHECK */
@@ -1046,7 +1046,7 @@ TclpGetCStackParams(
/*
* The first time through in a thread: record the "outermost" stack
- * frame and inquire the OS about the stack size.
+ * frame and inquire with the OS about the stack size.
*/
if (tsdPtr->outerVarPtr == NULL) {
@@ -1062,9 +1062,9 @@ TclpGetCStackParams(
if (stackSize || (stackGrowsDown && (&result < tsdPtr->stackBound))
|| (!stackGrowsDown && (&result > tsdPtr->stackBound))) {
- /*
- * Either the thread's first pass or stack failure: set the params
- */
+ /*
+ * Either the thread's first pass or stack failure: set the params
+ */
if (!stackSize) {
/*