fix C coding style
diff --git a/MathExtras.h b/MathExtras.h
index b2c1beb..78150c8 100644
--- a/MathExtras.h
+++ b/MathExtras.h
@@ -133,7 +133,7 @@
 #else
 #ifndef _MSC_VER
 	if (sizeof(long) == sizeof(int64_t))
-    {
+	{
 		if (!Value) return 64;
 		Count = 0;
 		// bisection method for count leading zeros
@@ -146,9 +146,9 @@
 			}
 		}
 	}
-    else
+	else
 #endif
-    {
+	{
 		// get hi portion
 		uint32_t Hi = Hi_32(Value);