diff options
author | Thomas White <taw@physics.org> | 2016-11-04 13:35:15 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2016-11-04 13:35:15 +0100 |
commit | c4a9925905abc1108b33057240b17913de2e671a (patch) | |
tree | 7157d9cc6d4e716d257f0438feeb5398f3a025bb /src/get_hkl.c | |
parent | 775bbc2d0081978f05d9fa35175bd82cf34c3c40 (diff) |
Add (more) warnings about unique axes
Diffstat (limited to 'src/get_hkl.c')
-rw-r--r-- | src/get_hkl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/get_hkl.c b/src/get_hkl.c index 62c9e608..d6efe747 100644 --- a/src/get_hkl.c +++ b/src/get_hkl.c @@ -561,18 +561,21 @@ int main(int argc, char *argv[]) } if ( holo_str != NULL ) { + pointgroup_warning(holo_str); holo = get_pointgroup(holo_str); free(holo_str); } else { holo = NULL; } if ( mero_str != NULL ) { + pointgroup_warning(mero_str); mero = get_pointgroup(mero_str); free(mero_str); } else { mero = NULL; } if ( expand_str != NULL ) { + pointgroup_warning(expand_str); expand = get_pointgroup(expand_str); free(expand_str); } else { |