diff --git a/indra/newview/lldrawpoolsky.cpp b/indra/newview/lldrawpoolsky.cpp
index 77b8a1fc32b3540c33491659c28236d6a0e8f1dc..178564b0d4df1fb2b0d2461e9291d0b9cb65cded 100644
--- a/indra/newview/lldrawpoolsky.cpp
+++ b/indra/newview/lldrawpoolsky.cpp
@@ -116,17 +116,17 @@ void LLDrawPoolSky::render(S32 pass)
 
 void LLDrawPoolSky::renderSkyFace(U8 index)
 {
-	LLFace* face = mDrawFace[index];
+    LLFace* face = mDrawFace[index];
 
-	if (!face || !face->getGeomCount())
-	{
-		return;
-	}
+    if (!face || !face->getGeomCount())
+    {
+        return;
+    }
 
     if (index < LLVOSky::FACE_SUN) // sky tex...interp
     {
         llassert(mSkyTex);
-	    mSkyTex[index].bindTexture(true); // bind the current tex
+        mSkyTex[index].bindTexture(true); // bind the current tex
 
         face->renderIndexed();
     }