From 568397bbcc4fca307ebc010ec7f815422b9ba80a Mon Sep 17 00:00:00 2001
From: James Cook <james@lindenlab.com>
Date: Sat, 7 Apr 2007 03:23:13 +0000
Subject: [PATCH] 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 a38bfc36003..cd4d8d2f873 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);
 
-- 
GitLab