Relayouted all switch statements: case aligns with switch.
[mmh] / sbr / cpydgst.c
index 86211cf..b788fef 100644 (file)
@@ -45,18 +45,18 @@ cpydgst(int in, int out, char *ifile, char *ofile)
                        if (*cp == '\0')
                                continue;
                        switch (state) {
-                               case S1:
-                                       if (*cp == '-') {
-                                               output('-');
-                                               output(' ');
-                                       }
-                                       state = S2;  /* fall */
+                       case S1:
+                               if (*cp == '-') {
+                                       output('-');
+                                       output(' ');
+                               }
+                               state = S2;  /* fall */
 
-                               case S2:
-                                       output(*cp);
-                                       if (*cp == '\n')
-                                               state = S1;
-                                       break;
+                       case S2:
+                               output(*cp);
+                               if (*cp == '\n')
+                                       state = S1;
+                               break;
                        }
                }