Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / math / histogram.c
index 6097a470f656555c0c10d4fc29a2f7e3ccde916d..8c809093335d68a1aad52f0cb3f91e0400508864 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 2004 Free Software Foundation, Inc.
-   Written by John Darrington <john@darrington.wattle.id.au>
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -37,12 +36,12 @@ histogram_create(double bins, double x_min, double x_max)
 
   bin_width = chart_rounded_tick((x_max - x_min)/ bins);
   bin_width_2 = bin_width / 2.0;
-    
-  n =  ceil( x_max / (bin_width_2) ) ; 
+
+  n =  ceil( x_max / (bin_width_2) ) ;
   if ( ! (n % 2 ) ) n++;
   upper_limit = n * bin_width_2;
 
-  n =  floor( x_min / (bin_width_2) ) ; 
+  n =  floor( x_min / (bin_width_2) ) ;
   if ( ! (n % 2 ) ) n--;
   lower_limit = n * bin_width_2;