diff options
author | dgp <dgp@users.sourceforge.net> | 2004-06-08 20:43:33 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-06-08 20:43:33 (GMT) |
commit | 3f28d37c32934a4b9ebb9e9de25f85c8ed77fdb0 (patch) | |
tree | 1adbe70821d1ab2a8791f5b2511aa51c2612f22a /unix/tclUnixPipe.c | |
parent | 0bfce763373517dffd7999ac456bc2a8331d9bdd (diff) | |
download | tcl-3f28d37c32934a4b9ebb9e9de25f85c8ed77fdb0.zip tcl-3f28d37c32934a4b9ebb9e9de25f85c8ed77fdb0.tar.gz tcl-3f28d37c32934a4b9ebb9e9de25f85c8ed77fdb0.tar.bz2 |
silence compiler warning
Diffstat (limited to 'unix/tclUnixPipe.c')
-rw-r--r-- | unix/tclUnixPipe.c | 4 |
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); |