cleanup: Big pile of whitespace fixes, all at once.
[u/mdw/catacomb] / md2.c
diff --git a/md2.c b/md2.c
index 08e033f..987eb39 100644 (file)
--- a/md2.c
+++ b/md2.c
@@ -7,7 +7,7 @@
  * (c) 2001 Straylight/Edgeware
  */
 
-/*----- Licensing notice --------------------------------------------------* 
+/*----- Licensing notice --------------------------------------------------*
  *
  * This file is part of Catacomb.
  *
  * it under the terms of the GNU Library General Public License as
  * published by the Free Software Foundation; either version 2 of the
  * License, or (at your option) any later version.
- * 
+ *
  * Catacomb is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU Library General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU Library General Public
  * License along with Catacomb; if not, write to the Free
  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
@@ -63,9 +63,9 @@ void md2_compress(md2_ctx *ctx, const void *sbuf)
   /* --- Handy macro for doing something lots of times --- */
 
 #define DO(what, where) do {                                           \
-  what(where,  0); what(where,  1); what(where,  2); what(where,  3);  \
-  what(where,  4); what(where,  5); what(where,  6); what(where,  7);  \
-  what(where,  8); what(where,  9); what(where, 10); what(where, 11);  \
+  what(where,  0); what(where, 1); what(where,  2); what(where,  3);   \
+  what(where,  4); what(where, 5); what(where,  6); what(where,  7);   \
+  what(where,  8); what(where, 9); what(where, 10); what(where, 11);   \
   what(where, 12); what(where, 13); what(where, 14); what(where, 15);  \
 } while (0)