From 73f3b4d4ad3be7893ff3da9d10b8d9460ce94da2 Mon Sep 17 00:00:00 2001 From: ccremers Date: Fri, 16 Jul 2004 14:11:56 +0000 Subject: [PATCH] - Fixed an error, where exit was used instead of error. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index d037db4..9585924 100644 --- a/src/main.c +++ b/src/main.c @@ -291,7 +291,7 @@ main (int argc, char **argv) { if (switchSO->count > 0) { - exit ("--read-symm and --symm-order cannot be used at the same time."); + error ("--read-symm and --symm-order cannot be used at the same time."); } sys->switchReadSymm = 1; }