strstr: Update cross-compilation guess.
[pspp] / lib / pipe2.c
index 1590deeae365c960dfd5a66e32899cf5b0f61031..12cac6e7729147e9e1d675115aae4e32552066c8 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