From ccdefb25aca3c6e940a471b28146cc62a6018f01 Mon Sep 17 00:00:00 2001 From: Tofu Linden Date: Tue, 25 May 2010 12:10:03 +0100 Subject: fix(?) another bug spotted by gcc. --- indra/newview/llface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indra/newview') diff --git a/indra/newview/llface.cpp b/indra/newview/llface.cpp index db3c5cca33..1571bab7de 100644 --- a/indra/newview/llface.cpp +++ b/indra/newview/llface.cpp @@ -371,7 +371,7 @@ void LLFace::setSize(S32 num_vertices, S32 num_indices, bool align) if (align) { //allocate vertices in blocks of 4 for alignment - S32 num_vertices = (num_vertices + 0x3) & ~0x3; + num_vertices = (num_vertices + 0x3) & ~0x3; } if (mGeomCount != num_vertices || -- cgit v1.2.3