From a21be75f605822310d819dcb5c35157676b4f740 Mon Sep 17 00:00:00 2001
From: Monroe Linden <monroe@lindenlab.com>
Date: Wed, 6 Oct 2010 17:07:14 -0700
Subject: Fix for a compile error.

Reviwed by Richard.
---
 indra/llxuixml/llinitparam.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

(limited to 'indra')

diff --git a/indra/llxuixml/llinitparam.cpp b/indra/llxuixml/llinitparam.cpp
index 7ffcd91879..bf2de9360a 100644
--- a/indra/llxuixml/llinitparam.cpp
+++ b/indra/llxuixml/llinitparam.cpp
@@ -316,7 +316,8 @@ namespace LLInitParam
 		// verify by calling readValue with NoValue type, an inherently unparseable type
 		if (!names_left)
 		{
-			return p.readValue(NoValue());
+			NoValue no_value;
+			return p.readValue(no_value);
 		}
 
 		return false;
-- 
cgit v1.2.3