Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / language / tests / pool-test.c
index b888c89638365323417d385042e3c6d47185c365..fdf63731b73aad4c7c48e6b80d84392bd73642da 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 2000 Free Software Foundation, Inc.
-   Written by Ben Pfaff <blp@gnu.org>.
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -63,7 +62,7 @@ cmd_debug_pool (struct lexer *lexer UNUSED, struct dataset *ds UNUSED)
 
       printf ("    Marking pool state...\n");
       pool_mark (pool, &m2);
-      
+
       printf ("       Populating pool with random-sized small "
              "and large objects...\n");
       for (i = 0; i < N_ITERATIONS; i++)
@@ -97,14 +96,14 @@ cmd_debug_pool (struct lexer *lexer UNUSED, struct dataset *ds UNUSED)
            }
          else if (type == 1)
            pool_create_subpool (pool);
-         else 
+         else
            {
              size_t size = rand () % (2 * MAX_SUBALLOC);
              void *p = pool_alloc (pool, size);
              memset (p, 0, size);
            }
        }
-      
+
       printf ("Releasing pool state...\n");
       pool_release (pool, &m1);