From 0a10ff0f78ae779ff52e9bd475b4bca534ea1f30 Mon Sep 17 00:00:00 2001
From: prep linden <prep@lindenlab.com>
Date: Thu, 31 May 2012 17:50:33 -0400
Subject: WIP:build fix

---
 indra/newview/llpathfindingcharacter.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

(limited to 'indra/newview')

diff --git a/indra/newview/llpathfindingcharacter.cpp b/indra/newview/llpathfindingcharacter.cpp
index 011a736568..c7843b8fee 100644
--- a/indra/newview/llpathfindingcharacter.cpp
+++ b/indra/newview/llpathfindingcharacter.cpp
@@ -125,7 +125,9 @@ void LLPathfindingCharacter::parseCharacterData(const LLSD &pCharacterData)
 	mRadius = pCharacterData.get(CHARACTER_RADIUS_FIELD).asReal();
 
 	//Create the rep inside the pathing library
-	LLPathingLib::getInstance()->createPhysicsCapsuleRep( mLength, mRadius, mIsHorizontal, LLVector3(0,0,0), getUUID() );
+	LLVector3 empty(0,0,0);
+	const LLUUID id = getUUID();
+	LLPathingLib::getInstance()->createPhysicsCapsuleRep( mLength, mRadius, mIsHorizontal, empty, id );
 
 #endif // SERVER_SIDE_CHARACTER_SHAPE_ROLLOUT_COMPLETE
 }
-- 
cgit v1.2.3