summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPipe.c
diff options
context:
space:
mode:
authorcvs2fossil <cvs2fossil>2000-03-30 04:36:09 (GMT)
committercvs2fossil <cvs2fossil>2000-03-30 04:36:09 (GMT)
commit0b5453c561b62764ef764923e89b8c32e3b0f3a1 (patch)
tree56004322c3888a75cfad2896ad2e4b54bb7866dd /unix/tclUnixPipe.c
parent5f7fd015c795c68b50b9f34e28deb81c5f5549d2 (diff)
downloadtcl-0b5453c561b62764ef764923e89b8c32e3b0f3a1.zip
tcl-0b5453c561b62764ef764923e89b8c32e3b0f3a1.tar.gz
tcl-0b5453c561b62764ef764923e89b8c32e3b0f3a1.tar.bz2
Created branch scriptics-sc-2-0-b2-syntheticscriptics_sc_2_0_b2scriptics_sc_2_0_b2_synthetic
Diffstat (limited to 'unix/tclUnixPipe.c')
-rw-r--r--unix/tclUnixPipe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tclUnixPipe.c b/unix/tclUnixPipe.c
index 91c497d..0e26414 100644
--- a/unix/tclUnixPipe.c
+++ b/unix/tclUnixPipe.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: tclUnixPipe.c,v 1.8 2000/03/27 18:34:32 ericm Exp $
+ * RCS: @(#) $Id: tclUnixPipe.c,v 1.7 1999/12/12 02:27:20 hobbs Exp $
*/
#include "tclInt.h"
@@ -147,7 +147,7 @@ TclpOpenFile(fname, mode)
*/
if (mode & O_WRONLY) {
- lseek(fd, (off_t) 0, SEEK_END);
+ lseek(fd, 0, SEEK_END);
}
/*
@@ -198,7 +198,7 @@ TclpCreateTempFile(contents)
close(fd);
return NULL;
}
- lseek(fd, (off_t) 0, SEEK_SET);
+ lseek(fd, 0, SEEK_SET);
}
return MakeFile(fd);
}