diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/index.c | 2 | ||||
-rw-r--r-- | src/reax.c | 2 | ||||
-rw-r--r-- | src/reax.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/index.c b/src/index.c index d998b7d6..90013999 100644 --- a/src/index.c +++ b/src/index.c @@ -160,7 +160,7 @@ void index_pattern(struct image *image, UnitCell *cell, IndexingMethod *indm, run_mosflm(image, cell); break; case INDEXING_REAX : - reax_index(image, cell); + reax_index(ipriv[n], image, cell); break; } if ( image->ncells == 0 ) { @@ -90,7 +90,7 @@ IndexingPrivate *reax_prepare() } -void reax_index(struct image *image, UnitCell *cell) +void reax_index(IndexingPrivate *p, struct image *image, UnitCell *cell) { } @@ -21,7 +21,7 @@ extern IndexingPrivate *reax_prepare(void); -extern void reax_index(struct image *image, UnitCell *cell); +extern void reax_index(IndexingPrivate *p, struct image *image, UnitCell *cell); #endif /* REAX_H */ |