summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPipe.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2004-06-08 20:43:33 (GMT)
committerdgp <dgp@noemail.net>2004-06-08 20:43:33 (GMT)
commit50a9eb032238522e3db480ba86f62a752bddf31e (patch)
tree1adbe70821d1ab2a8791f5b2511aa51c2612f22a /unix/tclUnixPipe.c
parent9b8441b9e01a5e2c0ee49e8e4120d103e628efdb (diff)
downloadtcl-50a9eb032238522e3db480ba86f62a752bddf31e.zip
tcl-50a9eb032238522e3db480ba86f62a752bddf31e.tar.gz
tcl-50a9eb032238522e3db480ba86f62a752bddf31e.tar.bz2
silence compiler warning
FossilOrigin-Name: 9e7774590389822340f48bb554ed02aa49ad3c68
Diffstat (limited to 'unix/tclUnixPipe.c')
-rw-r--r--unix/tclUnixPipe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixPipe.c b/unix/tclUnixPipe.c
index 89e64f3..77788ce 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.23.2.1 2004/06/08 20:25:45 dgp Exp $
+ * RCS: @(#) $Id: tclUnixPipe.c,v 1.23.2.2 2004/06/08 20:43:33 dgp Exp $
*/
#include "tclInt.h"
@@ -665,7 +665,7 @@ SetupStdFile(file, type)
* the close-on-exec flag.
*/
- result = fcntl(fd, F_SETFD, 0);
+ fcntl(fd, F_SETFD, 0);
}
} else {
close(targetFd);