aboutsummaryrefslogtreecommitdiff
path: root/src/ambigator.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2016-11-04 13:35:15 +0100
committerThomas White <taw@physics.org>2016-11-04 13:35:15 +0100
commitc4a9925905abc1108b33057240b17913de2e671a (patch)
tree7157d9cc6d4e716d257f0438feeb5398f3a025bb /src/ambigator.c
parent775bbc2d0081978f05d9fa35175bd82cf34c3c40 (diff)
Add (more) warnings about unique axes
Diffstat (limited to 'src/ambigator.c')
-rw-r--r--src/ambigator.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ambigator.c b/src/ambigator.c
index 659b17dc..f7837721 100644
--- a/src/ambigator.c
+++ b/src/ambigator.c
@@ -1099,6 +1099,7 @@ int main(int argc, char *argv[])
if ( s_sym_str == NULL ) {
s_sym_str = strdup("1");
}
+ pointgroup_warning(s_sym_str);
s_sym = get_pointgroup(s_sym_str);
if ( s_sym == NULL ) return 1;
free(s_sym_str);
@@ -1113,6 +1114,7 @@ int main(int argc, char *argv[])
w_sym = NULL;
amb = NULL;
} else {
+ pointgroup_warning(w_sym_str);
w_sym = get_pointgroup(w_sym_str);
free(w_sym_str);
if ( w_sym == NULL ) return 1;