diff options
Diffstat (limited to 'src/ambigator.c')
-rw-r--r-- | src/ambigator.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ambigator.c b/src/ambigator.c index 0ea1a17a..75744199 100644 --- a/src/ambigator.c +++ b/src/ambigator.c @@ -901,7 +901,10 @@ int main(int argc, char *argv[]) describe_symmetry(amb); if ( num_equivs(amb, NULL) != 1 ) { ERROR("There must be only one ambiguity operator.\n"); - ERROR("Try again with a different value for -w.\n"); + if ( w_sym_str != NULL ) { + ERROR("Try again with a different value" + " for -w.\n"); + } return 1; } } |