commit 310616e476c6991f84d411639b60b8e17896f70b
parent 6baeb1aa0ffa3e0dfc387733400af2563e958075
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon, 29 Apr 2019 18:26:24 +0200
Strip trailing whitespace
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/arrays.c b/arrays.c
@@ -127,8 +127,8 @@ void print_arrays_2nd_normalized(const double* a, const double* b, const int n)
 
 void print_three_arrays(
         const double* a,
-        const double* b, 
-        const double* c, 
+        const double* b,
+        const double* c,
         const int n)
 {
     for (int i=0; i<n; ++i)
@@ -138,7 +138,7 @@ void print_three_arrays(
 void fprint_arrays(
         FILE* fp,
         const double* a,
-        const double* b, 
+        const double* b,
         const int n)
 {
     for (int i=0; i<n; ++i)
@@ -148,8 +148,8 @@ void fprint_arrays(
 void fprint_three_arrays(
         FILE* fp,
         const double* a,
-        const double* b, 
-        const double* c, 
+        const double* b,
+        const double* c,
         const int n)
 {
     for (int i=0; i<n; ++i)