From 8f2f3e3e7daa3feaf7b6aec362f5745fc997fd00 Mon Sep 17 00:00:00 2001
From: Bill Hoffman <bill.hoffman@kitware.com>
Date: Tue, 5 Dec 2006 08:39:22 -0500
Subject: [PATCH] ENH: fix build error on IRIX

---
 ProcessUNIX.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ProcessUNIX.c b/ProcessUNIX.c
index b88e052..d2e8bfb 100644
--- a/ProcessUNIX.c
+++ b/ProcessUNIX.c
@@ -959,10 +959,10 @@ int kwsysProcess_WaitForData(kwsysProcess* cp, char** data, int* length,
       0,
       kwsysProcess_Pipe_None,
       0,
-      userTimeout,
+      0,
       {0, 0}
     };
-
+  wd.UserTimeout = userTimeout;
   /* Make sure we are executing a process.  */
   if(!cp || cp->State != kwsysProcess_State_Executing || cp->Killed ||
      cp->TimeoutExpired)
-- 
GitLab