diff --git a/src/util.c b/src/util.c
index f0f31655c60816b6998773ce910ec0513a3769cb..22dbb78c5a8f9bc62aabf9440b1d47632dfc5e25 100644
--- a/src/util.c
+++ b/src/util.c
@@ -185,7 +185,8 @@ static double MpfAtof(const char *str) {
   /* Handle optional sign */
   negative = 0;
   switch (*p) {
-    case '-': negative = 1; /* Fall through to increment position */
+    case '-': negative = 1;
+      /* Fall through to increment position */
     case '+': p++;
   }
 
@@ -226,7 +227,8 @@ static double MpfAtof(const char *str) {
     /* Handle optional sign */
     negative = 0;
     switch(*++p) {
-      case '-': negative = 1;   /* Fall through to increment pos */
+      case '-': negative = 1;
+        /* Fall through to increment position */
       case '+': p++;
     }