From 9ad99e17734f1898071ec68ed11617f48701eb28 Mon Sep 17 00:00:00 2001 From: callum Date: Tue, 1 Dec 2009 19:19:41 -0800 Subject: Fix a signed/unsigned warning that breaks the Windows build. --- indra/newview/llvovolume.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 367912f45e..cf61994fea 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -1137,7 +1137,7 @@ void LLVOVolume::regenFaces() // If the face had media on it, this will have broken the link between the LLViewerMediaTexture and the face. // Re-establish the link. - if(mMediaImplList.size() > i) + if((int)mMediaImplList.size() > i) { if(mMediaImplList[i]) { -- cgit v1.2.3