aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/index.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2013-02-05 23:52:04 +0100
committerThomas White <taw@bitwiz.org.uk>2013-02-05 23:52:04 +0100
commit004be7ba8d405c7d04ac6143c783bfec70d296bb (patch)
tree1829386435cb0e1a7e66faf57a069f8f94d39b74 /libcrystfel/src/index.c
parent48bfb8e3674e921df3dc2ec387e6aa2889c343d3 (diff)
WIP on updating partialator
Diffstat (limited to 'libcrystfel/src/index.c')
-rw-r--r--libcrystfel/src/index.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/libcrystfel/src/index.c b/libcrystfel/src/index.c
index cd6628e9..94159957 100644
--- a/libcrystfel/src/index.c
+++ b/libcrystfel/src/index.c
@@ -52,13 +52,6 @@
#include "cell-utils.h"
-static const char *maybes(int n)
-{
- if ( n == 1 ) return "";
- return "s";
-}
-
-
IndexingPrivate **prepare_indexing(IndexingMethod *indm, UnitCell *cell,
const char *filename, struct detector *det,
struct beam_params *beam, float *ltl)
@@ -117,6 +110,7 @@ void cleanup_indexing(IndexingMethod *indms, IndexingPrivate **privs)
case INDEXING_DIRAX :
case INDEXING_MOSFLM :
/* No cleanup */
+ /* FIXME: Not true */
break;
case INDEXING_REAX :
@@ -246,7 +240,6 @@ IndexingMethod *build_indexer_list(const char *str)
int n, i;
char **methods;
IndexingMethod *list;
- int tmp;
int nmeth = 0;
n = assplode(str, ",-", &methods, ASSPLODE_NONE);