Author: bernhard
Date: Thu Jan  1 04:36:28 2009
New Revision: 34736

Modified:
   trunk/src/utils.c

Log:
[codingstd] 4 space indention, 2 more spaces on continuation lines


Modified: trunk/src/utils.c
==============================================================================
--- trunk/src/utils.c   (original)
+++ trunk/src/utils.c   Thu Jan  1 04:36:28 2009
@@ -168,19 +168,19 @@
 {
 #ifdef __LCC__
 
-  /* Another workaround for buggy code generation in the lcc compiler-
-   * adding a temporary variable makes it pass the test.
-   */
-  const FLOATVAL temp = n3 * floor(n2 / n3);
-  ASSERT_ARGS(floatval_mod);
-
-  return !FLOAT_IS_ZERO(n3)
-     ? (n2 - temp)
-     : n2;
+    /* Another workaround for buggy code generation in the lcc compiler-
+     * adding a temporary variable makes it pass the test.
+     */
+    const FLOATVAL temp = n3 * floor(n2 / n3);
+    ASSERT_ARGS(floatval_mod);
+
+    return !FLOAT_IS_ZERO(n3)
+      ? (n2 - temp)
+      : n2;
 #else
-  return !FLOAT_IS_ZERO(n3)
-     ? (n2 - n3 * floor(n2 / n3))
-     : n2;
+    return !FLOAT_IS_ZERO(n3)
+      ? (n2 - n3 * floor(n2 / n3))
+      : n2;
 #endif
 }
 

Reply via email to