Fixed bug 678 which was due to calling gmx_fatal without calling
authorDavid van der Spoel <spoel@xray.bmc.uu.se>
Sat, 22 Jan 2011 09:02:58 +0000 (10:02 +0100)
committerDavid van der Spoel <spoel@xray.bmc.uu.se>
Sat, 22 Jan 2011 09:02:58 +0000 (10:02 +0100)
parse_common_args before.

src/tools/gmx_kinetics.c

index 52029f6d8b3cb419eced4321c53aa97fffc21752..d245c7e1c7709dd9d962e13fbc265397752eeb7e 100644 (file)
@@ -890,7 +890,7 @@ int gmx_kinetics(int argc,char *argv[])
 #else
 int gmx_kinetics(int argc,char *argv[])
 {
-  gmx_fatal(FARGS,"This program should be compiled with the GNU scientific library. Please install the library and reinstall GROMACS.");
+  fprintf(stderr,"This program should be compiled with the GNU scientific library. Please install the library and reinstall GROMACS.\n");
   
   return 0;
 }