aboutsummaryrefslogtreecommitdiff
path: root/src/get_hkl.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2012-10-05 17:27:50 +0200
committerThomas White <taw@physics.org>2012-10-05 17:28:16 +0200
commit783d96028697582c9a0a1e32d4704ddcc4c255e7 (patch)
tree6aef8d6e2fb30aa53672b64cb45c92b951c7e64a /src/get_hkl.c
parentd7c44ca4d5dca6e3e24e255c0d4d4e7d651db19f (diff)
compare_hkl: Complete rework
Diffstat (limited to 'src/get_hkl.c')
-rw-r--r--src/get_hkl.c6
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);