diff options
author | Rider Linden <rider@lindenlab.com> | 2015-09-03 12:34:21 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2015-09-03 12:34:21 -0700 |
commit | e0c27db16771ebcc95111595acea192fd52e5e02 (patch) | |
tree | bd6b59cfb30c333b0eb5f41c3f8345dadfb4871a /indra/newview | |
parent | c08072a0508cefc6bfc8c05937e984a095f323ce (diff) |
Correct use of filename vs. path in llfeaturemanager coroutine.
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/llfeaturemanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp index 0b76ca16a9..d2f8c68558 100755 --- a/indra/newview/llfeaturemanager.cpp +++ b/indra/newview/llfeaturemanager.cpp @@ -536,13 +536,13 @@ void LLFeatureManager::fetchFeatureTableCoro(std::string tableName) // write to file const LLSD::Binary &raw = result[LLCoreHttpUtil::HttpCoroutineAdapter::HTTP_RESULTS_RAW].asBinary(); - LL_INFOS() << "writing feature table to " << filename << LL_ENDL; + LL_INFOS() << "writing feature table to " << path << LL_ENDL; S32 size = raw.size(); if (size > 0) { // write to file - LLAPRFile out(filename, LL_APR_WB); + LLAPRFile out(path, LL_APR_WB); out.write(raw.data(), size); out.close(); } |