diff options
author | callum <none@none> | 2009-12-01 19:19:41 -0800 |
---|---|---|
committer | callum <none@none> | 2009-12-01 19:19:41 -0800 |
commit | 9ad99e17734f1898071ec68ed11617f48701eb28 (patch) | |
tree | 82dd86b6a43f68f5faaf6e18fda36b30c8487b1a | |
parent | 1db0d32133f97b03a632f03fa78e198b7f00866b (diff) |
Fix a signed/unsigned warning that breaks the Windows build.
-rw-r--r-- | indra/newview/llvovolume.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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]) { |