diff --git a/indra/newview/llspatialpartition.cpp b/indra/newview/llspatialpartition.cpp
index 91ef096ab6a52ec277b576415ac429a9c6db5c25..8c04cf80cfbf1d25b8271a5cb8fcc6f84ff9f99c 100644
--- a/indra/newview/llspatialpartition.cpp
+++ b/indra/newview/llspatialpartition.cpp
@@ -4017,7 +4017,7 @@ LLDrawInfo::LLDrawInfo(U16 start, U16 end, U32 count, U32 offset,
 {
 	mVertexBuffer->validateRange(mStart, mEnd, mCount, mOffset);
 	
-	mDebugColor = (rand() << 16) + rand();
+	mDebugColor = ((U32)rand() << 16) + rand();
 }
 
 LLDrawInfo::~LLDrawInfo()	
diff --git a/indra/newview/llspatialpartition.h b/indra/newview/llspatialpartition.h
index 75aae72039de6d7ae69d312376b3a08788e6eb4b..53472de298d768e6067b539784b767e1a69fc2a3 100644
--- a/indra/newview/llspatialpartition.h
+++ b/indra/newview/llspatialpartition.h
@@ -78,7 +78,7 @@ class LLDrawInfo : public LLRefCount, public LLTrace::MemTrackableNonVirtual<LLD
 	LLPointer<LLViewerTexture>     mTexture;
 	std::vector<LLPointer<LLViewerTexture> > mTextureList;
 
-	S32 mDebugColor;
+	U32 mDebugColor;
 	const LLMatrix4* mTextureMatrix;
 	const LLMatrix4* mModelMatrix;
 	U16 mStart;