diff options
author | Dave Parks <davep@lindenlab.com> | 2010-09-29 18:10:27 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2010-09-29 18:10:27 -0500 |
commit | 23b4dc61893f90abd49957a9b377312012fa0161 (patch) | |
tree | 0d961db90558b15a6ef98b6db6fc7e1998cdc42c /indra/llprimitive | |
parent | 0c93da0501ab1debd6fa11af29a215be81f7b803 (diff) |
Fix for serialization deprecation problems.
Diffstat (limited to 'indra/llprimitive')
-rw-r--r-- | indra/llprimitive/llmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llprimitive/llmodel.cpp b/indra/llprimitive/llmodel.cpp index b2f80de12a..9e3d9704ae 100644 --- a/indra/llprimitive/llmodel.cpp +++ b/indra/llprimitive/llmodel.cpp @@ -1660,7 +1660,7 @@ LLSD LLModel::writeModelToStream(std::ostream& ostr, LLSD& mdl, BOOL nowrite) if (!nowrite) { - LLSDSerialize::serialize(header, ostr, LLSDSerialize::LLSD_BINARY); + LLSDSerialize::toBinary(header, ostr); if (!skin.empty()) { //write skin block |