From d43ac77d1b6d1952fe3369079f6461b124466b38 Mon Sep 17 00:00:00 2001
From: Loren Shih <seraph@lindenlab.com>
Date: Wed, 19 May 2010 13:56:39 -0400
Subject: [PATCH] AVP-72 FIXED Debug settings for gathering Welcome Island Rez
 time statistics

Fix for ambiguity around LLSD usage.
---
 indra/newview/llvoavatarself.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp
index f329ec83b00..da99b212f07 100644
--- a/indra/newview/llvoavatarself.cpp
+++ b/indra/newview/llvoavatarself.cpp
@@ -1977,7 +1977,7 @@ void LLVOAvatarSelf::setNewBakedTexture( ETextureIndex te, const LLUUID& uuid )
 		{
 			LLSD args;
 			args["EXISTENCE"] = llformat("%d",(U32)mDebugExistenceTimer.getElapsedTimeF32());
-			args["TIME"] = (U32)mDebugSelfLoadTimer.getElapsedTimeF32();
+			args["TIME"] = llformat("%d",(U32)mDebugSelfLoadTimer.getElapsedTimeF32());
 			LLNotificationsUtil::add("AvatarRezSelfNotification",args);
 		}
 
-- 
GitLab