From 60a777d2e3f9bec7a20e5de2df7cb3ecd2455b98 Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Mon, 30 Jan 2012 12:32:05 -0500
Subject: [PATCH] LLProcess::handle must be qualified when used in LLJob class.

---
 indra/llcommon/llprocess.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/indra/llcommon/llprocess.cpp b/indra/llcommon/llprocess.cpp
index a7bafb8cb02..1e27f8ce1d7 100644
--- a/indra/llcommon/llprocess.cpp
+++ b/indra/llcommon/llprocess.cpp
@@ -133,7 +133,7 @@ static std::string WindowsErrorString(const std::string& operation);
 class LLJob: public LLSingleton<LLJob>
 {
 public:
-	void assignProcess(const std::string& prog, handle hProcess)
+	void assignProcess(const std::string& prog, LLProcess::handle hProcess)
 	{
 		// If we never managed to initialize this Job Object, can't use it --
 		// but don't keep spamming the log, we already emitted warnings when
@@ -175,7 +175,7 @@ class LLJob: public LLSingleton<LLJob>
 		}
 	}
 
-	handle mJob;
+	LLProcess::handle mJob;
 };
 
 void LLProcess::launch(const LLSDOrParams& params)
-- 
GitLab