diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2012-01-30 12:32:05 -0500 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2012-01-30 12:32:05 -0500 | 
| commit | 60a777d2e3f9bec7a20e5de2df7cb3ecd2455b98 (patch) | |
| tree | 3f819c7969cc1f7ffc604a2973475518cdd21689 | |
| parent | 85581eefa63d8f8e8c5132c4cd7e137f6cb88869 (diff) | |
LLProcess::handle must be qualified when used in LLJob class.
| -rw-r--r-- | indra/llcommon/llprocess.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llcommon/llprocess.cpp b/indra/llcommon/llprocess.cpp index a7bafb8cb0..1e27f8ce1d 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 @@ private:  		}  	} -	handle mJob; +	LLProcess::handle mJob;  };  void LLProcess::launch(const LLSDOrParams& params) | 
