summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2012-01-30 12:32:05 -0500
committerNat Goodspeed <nat@lindenlab.com>2012-01-30 12:32:05 -0500
commit60a777d2e3f9bec7a20e5de2df7cb3ecd2455b98 (patch)
tree3f819c7969cc1f7ffc604a2973475518cdd21689 /indra/llcommon
parent85581eefa63d8f8e8c5132c4cd7e137f6cb88869 (diff)
LLProcess::handle must be qualified when used in LLJob class.
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/llprocess.cpp4
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)