Reorder ChangeLog entries to match the order in which the changes went
[gnulib.git] / lib / pipe2.c
index 1590dee..12cac6e 100644 (file)
@@ -43,7 +43,9 @@ 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  */
-  int tmp[2] = { fd[0], fd[1] };
+  int tmp[2];
+  tmp[0] = fd[0];
+  tmp[1] = fd[1];
 
 #if HAVE_PIPE2
 # undef pipe2