summaryrefslogtreecommitdiff
path: root/indra/newview/llvoavatar.cpp
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2016-10-27 10:30:58 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2016-10-27 10:30:58 -0400
commitdd2caad496b6a1fd34f987044f25223311ca3d46 (patch)
tree0be7ec01bd17907ee6685ffc8a94e8a0befd5941 /indra/newview/llvoavatar.cpp
parent7447da6943842a5af31787b2bbee3255b45ba88e (diff)
SL-503 - fix for mac build whinging
Diffstat (limited to 'indra/newview/llvoavatar.cpp')
-rw-r--r--indra/newview/llvoavatar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index ec90321139..fb1bbb2137 100644
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -8557,7 +8557,7 @@ void LLVOAvatar::dumpArchetypeXML(const std::string& prefix, bool group_by_weara
pJoint->getAllAttachmentPosOverrides(num_pos_overrides, distinct_pos_overrides);
apr_file_printf( file, "\t\t<joint_offset name=\"%s\" position=\"%f %f %f\" mesh_id=\"%s\" count=\"%d\" distinct=\"%d\"/>\n",
pJoint->getName().c_str(), pos[0], pos[1], pos[2], mesh_id.asString().c_str(),
- num_pos_overrides, distinct_pos_overrides.size());
+ num_pos_overrides, (S32) distinct_pos_overrides.size());
}
}
// Joint scale overrides
@@ -8576,7 +8576,7 @@ void LLVOAvatar::dumpArchetypeXML(const std::string& prefix, bool group_by_weara
pJoint->getAllAttachmentPosOverrides(num_scale_overrides, distinct_scale_overrides);
apr_file_printf( file, "\t\t<joint_scale name=\"%s\" scale=\"%f %f %f\" mesh_id=\"%s\" count=\"%d\" distinct=\"%d\"/>\n",
pJoint->getName().c_str(), scale[0], scale[1], scale[2], mesh_id.asString().c_str(),
- num_scale_overrides, distinct_scale_overrides.size());
+ num_scale_overrides, (S32) distinct_scale_overrides.size());
}
}
F32 pelvis_fixup;