diff options
author | Thomas White <taw@physics.org> | 2018-11-09 10:53:13 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-11-09 10:53:13 +0100 |
commit | 7c89d56e87a24877fd07d515b70051c141ad62d8 (patch) | |
tree | aa3331ba609bda9f4938823f9ed698a4203ecb3d | |
parent | d643b45921d20b8a63292e7f47e36bba8a8c42a5 (diff) |
Fix prototype for calculate_refl_mean_var
-rw-r--r-- | src/rejection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rejection.c b/src/rejection.c index ebca6957..55546bbc 100644 --- a/src/rejection.c +++ b/src/rejection.c @@ -94,7 +94,7 @@ void early_rejection(Crystal **crystals, int n) } -static double calculate_refl_mean_var(RefList *full) +static void calculate_refl_mean_var(RefList *full) { Reflection *refl; RefListIterator *iter; |