diff options
author | Thomas White <taw@physics.org> | 2017-07-06 17:04:40 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2017-07-06 17:17:28 +0200 |
commit | dc3395900fc3ce0d3961757628ff83ad6456be19 (patch) | |
tree | 59314c1690fe704dad08df13d9bc9929ee8cff95 /libcrystfel/src/felix.c | |
parent | cfb3d2ebc34f526aff4142c0d26e3955bc1ec734 (diff) |
Indexing engine private pointers should be void *
Diffstat (limited to 'libcrystfel/src/felix.c')
-rw-r--r-- | libcrystfel/src/felix.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libcrystfel/src/felix.c b/libcrystfel/src/felix.c index 02d523c6..b531e3af 100644 --- a/libcrystfel/src/felix.c +++ b/libcrystfel/src/felix.c @@ -3,8 +3,8 @@ * * Invoke Felix for multi-crystal autoindexing. * - * Copyright © 2015 Deutsches Elektronen-Synchrotron DESY, - * a research centre of the Helmholtz Association. + * Copyright © 2015-2017 Deutsches Elektronen-Synchrotron DESY, + * a research centre of the Helmholtz Association. * * Authors: * 2015 Thomas White <taw@physics.org> @@ -658,9 +658,8 @@ static void parse_options(const char *options, struct felix_private *gp) free(option); } -IndexingPrivate *felix_prepare(IndexingMethod *indm, UnitCell *cell, - struct detector *det, float *ltl, - const char *options) +void *felix_prepare(IndexingMethod *indm, UnitCell *cell, + struct detector *det, float *ltl, const char *options) { struct felix_private *gp; |