summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixChan.c
diff options
context:
space:
mode:
authorandreask@activestate.com <andreas_kupries>2005-09-02 19:23:46 (GMT)
committerandreask@activestate.com <andreas_kupries>2005-09-02 19:23:46 (GMT)
commita688e52cb0c6cd1b8319c539cd27791502a68aa3 (patch)
treea5dae4b20c88e9ac80c264ac19cc8c8217a51ab1 /unix/tclUnixChan.c
parent13d972d65028362d1fafd2327bb480027fc24425 (diff)
downloadtcl-a688e52cb0c6cd1b8319c539cd27791502a68aa3.zip
tcl-a688e52cb0c6cd1b8319c539cd27791502a68aa3.tar.gz
tcl-a688e52cb0c6cd1b8319c539cd27791502a68aa3.tar.bz2
* unix/tclUnixSock.c (InitializeHostName): Synchronized use of
static modifier in declaration and definition of function. * unix/tclUnixChan.c (FileTruncateProc): Synchronized use of static modifier in declaration and definition of function. * generic/tclResult.c (ReleaseKeys): Synchronized use of static modifier in declaration and definition of function. * generic/tclListObj.c (NewListIntRep): Synchronized use of static modifier in declaration and definition of function. * generic/tclEncoding.c (InitializeEncodingSearchPath): Synchronized use of static modifier in declaration and definition of function. * generic/tclEncoding.c (FillEncodingFileMap): Synchronized use of static modifier in declaration and definition of function. * generic/tclIORChan.c (RcNewHandle): Synchronized use of static modifier in declaration and definition of function.
Diffstat (limited to 'unix/tclUnixChan.c')
-rw-r--r--unix/tclUnixChan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c
index 390b914..0f489fb 100644
--- a/unix/tclUnixChan.c
+++ b/unix/tclUnixChan.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixChan.c,v 1.59 2005/07/20 23:16:00 dkf Exp $
+ * RCS: @(#) $Id: tclUnixChan.c,v 1.60 2005/09/02 19:23:46 andreas_kupries Exp $
*/
#include "tclInt.h" /* Internal definitions for Tcl. */
@@ -3364,7 +3364,7 @@ FileThreadActionProc (instanceData, action)
*----------------------------------------------------------------------
*/
-int
+static int
FileTruncateProc(instanceData, length)
ClientData instanceData;
Tcl_WideInt length;