diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp
index dd36eca8ba8e0764069482a32a499d7d8c88fc4c..853f279c95aca53e113fda0de32892e79845e45b 100755
--- a/indra/llcommon/llerror.cpp
+++ b/indra/llcommon/llerror.cpp
@@ -1197,15 +1197,14 @@ namespace LLError
 #endif
 	void crashAndLoop(const std::string& message)
 	{
+		// Now, we go kaboom!
+		int* make_me_crash = NULL;
+
+		*make_me_crash = 0;
+
 		while(true)
 		{
 			// Loop forever, in case the crash didn't work?
-            
-            // Now, we go kaboom!
-            int* make_me_crash = NULL;
-            
-            *make_me_crash = 0;
-
 		}
 		
 		// this is an attempt to let Coverity and other semantic scanners know that this function won't be returning ever.