summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2021-03-25 16:29:07 +0100
committerAndrea Corallo <akrl@sdf.org>2021-03-25 16:29:07 +0100
commitc6c7b30e4b46bf0c8ac5e77546d3938e79f14d56 (patch)
tree77064f18e9e3b324050ff817f16d7bdb917b0514 /lib
parent92914ade6d3c74ab0a1a7b3820e4707fb0679977 (diff)
parent52a74604160387230c104e3305a5e08fa8c3fdf6 (diff)
downloademacs-c6c7b30e4b46bf0c8ac5e77546d3938e79f14d56.tar.gz
Merge remote-tracking branch 'savannah/master' into native-comp
Diffstat (limited to 'lib')
-rw-r--r--lib/pipe2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pipe2.c b/lib/pipe2.c
index 41493aa4307..adbaa4a1021 100644
--- a/lib/pipe2.c
+++ b/lib/pipe2.c
@@ -41,7 +41,7 @@ pipe2 (int fd[2], int flags)
{
/* Mingw _pipe() corrupts fd on failure; also, if we succeed at
creating the pipe but later fail at changing fcntl, we want
- to leave fd unchanged: http://austingroupbugs.net/view.php?id=467 */
+ to leave fd unchanged: https://austingroupbugs.net/view.php?id=467 */
int tmp[2];
tmp[0] = fd[0];
tmp[1] = fd[1];