diff options
author | Thomas White <taw@physics.org> | 2011-07-29 11:31:37 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:35 +0100 |
commit | 2f0e2601135491f0aef7ad08738d53e1c2ae6b7b (patch) | |
tree | b0aaaa5feb681cb80b8e1c9c21edcea984c5223d /src/index.c | |
parent | 4656c53442ccc83cb5e92308cfe34cda118c560d (diff) |
ReAx indexing needs cell
Diffstat (limited to 'src/index.c')
-rw-r--r-- | src/index.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/index.c b/src/index.c index df2c5ee1..d998b7d6 100644 --- a/src/index.c +++ b/src/index.c @@ -248,6 +248,7 @@ IndexingMethod *build_indexer_list(const char *str, int *need_cell) list[i] = INDEXING_MOSFLM; } else if ( strcmp(methods[i], "reax") == 0) { list[i] = INDEXING_REAX; + *need_cell = 1; } else { ERROR("Unrecognised indexing method '%s'\n", methods[i]); |