From 568397bbcc4fca307ebc010ec7f815422b9ba80a Mon Sep 17 00:00:00 2001 From: James Cook Date: Sat, 7 Apr 2007 03:23:13 +0000 Subject: Fixed Mac compiler warnings for deployment builds. --- indra/newview/llselectmgr.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/newview/llselectmgr.cpp b/indra/newview/llselectmgr.cpp index a38bfc3600..cd4d8d2f87 100644 --- a/indra/newview/llselectmgr.cpp +++ b/indra/newview/llselectmgr.cpp @@ -5145,7 +5145,8 @@ void LLSelectNode::saveTextureScaleRatios() F32 s,t; const LLTextureEntry* tep = mObject->getTE(i); tep->getScale(&s,&t); - U32 s_axis, t_axis; + U32 s_axis = 0; + U32 t_axis = 0; gSelectMgr->getTESTAxes(mObject, i, &s_axis, &t_axis); -- cgit v1.2.3