Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / language / xforms / sample.c
index 4cf66c20ae017f0658113edd017bdb0b25e893b7..5db8a22e656ad6c5680ffde718fd00a8160f3804 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 1997-9, 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
@@ -79,7 +78,7 @@ cmd_sample (struct lexer *lexer, struct dataset *ds)
                     "exclusive."));
          return CMD_FAILURE;
        }
-         
+
       frac = lex_tokval (lexer) * (max - min) + min;
       a = b = 0;
     }
@@ -100,7 +99,7 @@ cmd_sample (struct lexer *lexer, struct dataset *ds)
               a, b);
          return CMD_FAILURE;
        }
-      
+
       frac = 0;
     }
   lex_get (lexer);
@@ -124,7 +123,7 @@ sample_trns_proc (void *t_, struct ccase *c UNUSED,
   struct sample_trns *t = t_;
   double U;
 
-  if (t->type == TYPE_FRACTION) 
+  if (t->type == TYPE_FRACTION)
     {
       if (gsl_rng_get (get_rng ()) <= t->frac)
         return TRNS_CONTINUE;
@@ -150,7 +149,7 @@ sample_trns_proc (void *t_, struct ccase *c UNUSED,
 }
 
 static bool
-sample_trns_free (void *t_) 
+sample_trns_free (void *t_)
 {
   struct sample_trns *t = t_;
   free (t);