cleanup: Big pile of whitespace fixes, all at once.
[u/mdw/catacomb] / gfx.c
diff --git a/gfx.c b/gfx.c
index 40f639d..b1bdd51 100644 (file)
--- a/gfx.c
+++ b/gfx.c
@@ -7,7 +7,7 @@
  * (c) 2000 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,
@@ -186,12 +186,12 @@ void gfx_mul(mpw *dv, mpw *dvl, const mpw *av, const mpw *avl,
 /* --- @gfx_div@ --- *
  *
  * Arguments:  @mpw *qv, *qvl@ = quotient vector base and limit
- *              @mpw *rv, *rvl@ = dividend/remainder vector base and limit
- *              @const mpw *dv, *dvl@ = divisor vector base and limit
+ *             @mpw *rv, *rvl@ = dividend/remainder vector base and limit
+ *             @const mpw *dv, *dvl@ = divisor vector base and limit
  *
- * Returns:     ---
+ * Returns:    ---
  *
- * Use:         Performs division on polynomials over %$\gf{2}$%.
+ * Use:                Performs division on polynomials over %$\gf{2}$%.
  */
 
 void gfx_div(mpw *qv, mpw *qvl, mpw *rv, mpw *rvl,
@@ -276,7 +276,7 @@ void gfx_div(mpw *qv, mpw *qvl, mpw *rv, mpw *rvl,
 } while (0)
 
 #define MAX(x, y) ((x) > (y) ? (x) : (y))
-  
+
 static void dumpmp(const char *msg, const mpw *v, const mpw *vl)
 {
   fputs(msg, stderr);
@@ -302,8 +302,8 @@ static int vadd(dstr *v)
   gfx_add(d, dl, a, al, b, bl);
   if (!mpx_ueq(d, dl, c, cl)) {
     fprintf(stderr, "\n*** vadd failed\n");
-    dumpmp("       a", a, al);
-    dumpmp("       b", b, bl);
+    dumpmp("      a", a, al);
+    dumpmp("      b", b, bl);
     dumpmp("expected", c, cl);
     dumpmp("  result", d, dl);
     ok = 0;
@@ -329,8 +329,8 @@ static int vmul(dstr *v)
   gfx_mul(d, dl, a, al, b, bl);
   if (!mpx_ueq(d, dl, c, cl)) {
     fprintf(stderr, "\n*** vmul failed\n");
-    dumpmp("       a", a, al);
-    dumpmp("       b", b, bl);
+    dumpmp("      a", a, al);
+    dumpmp("      b", b, bl);
     dumpmp("expected", c, cl);
     dumpmp("  result", d, dl);
     ok = 0;