diff options
Diffstat (limited to 'src/get_hkl.c')
-rw-r--r-- | src/get_hkl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/get_hkl.c b/src/get_hkl.c index d62b1bfd..9a966ef9 100644 --- a/src/get_hkl.c +++ b/src/get_hkl.c @@ -246,8 +246,8 @@ static RefList *twin_reflections(RefList *in, } -static RefList *expand_reflections(RefList *in, const SymOpList *target, - const SymOpList *initial) +static RefList *expand_reflections(RefList *in, const SymOpList *initial, + const SymOpList *target) { Reflection *refl; RefListIterator *iter; @@ -525,7 +525,7 @@ int main(int argc, char *argv[]) RefList *new; STATUS("Expanding from %s into %s\n", symmetry_name(mero), symmetry_name(expand)); - new = expand_reflections(input, expand, mero); + new = expand_reflections(input, mero, expand); /* Replace old with new */ reflist_free(input); |