diff options
author | Leyla Farazha <leyla@lindenlab.com> | 2011-10-27 16:16:57 -0700 |
---|---|---|
committer | Leyla Farazha <leyla@lindenlab.com> | 2011-10-27 16:16:57 -0700 |
commit | a09df4f840fc841870da76e904efec51d3e304b4 (patch) | |
tree | 12b434f44c4088865d9449a52c1c7648d5adacd4 /indra/llcharacter/llstatemachine.cpp | |
parent | 988278d236d789f490eed24a662a6ffe2be6455a (diff) | |
parent | ad4ae99c30f1293bf8266c1f53ae62161bcb68bb (diff) |
merge
Diffstat (limited to 'indra/llcharacter/llstatemachine.cpp')
-rw-r--r-- | indra/llcharacter/llstatemachine.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llcharacter/llstatemachine.cpp b/indra/llcharacter/llstatemachine.cpp index dcc4ff5f0e..e0454131a5 100644 --- a/indra/llcharacter/llstatemachine.cpp +++ b/indra/llcharacter/llstatemachine.cpp @@ -204,7 +204,8 @@ LLFSMState* LLStateDiagram::getState(U32 state_id) BOOL LLStateDiagram::saveDotFile(const std::string& filename) { - LLAPRFile outfile(filename, LL_APR_W); + LLAPRFile outfile ; + outfile.open(filename, LL_APR_W); apr_file_t* dot_file = outfile.getFileHandle() ; if (!dot_file) |