--- imach/src/imach.c 2014/06/20 17:32:08 1.154 +++ imach/src/imach.c 2014/08/25 18:32:34 1.155 @@ -1,6 +1,10 @@ -/* $Id: imach.c,v 1.154 2014/06/20 17:32:08 brouard Exp $ +/* $Id: imach.c,v 1.155 2014/08/25 18:32:34 brouard Exp $ $State: Exp $ $Log: imach.c,v $ + Revision 1.155 2014/08/25 18:32:34 brouard + Summary: New compile, minor changes + Author: Brouard + Revision 1.154 2014/06/20 17:32:08 brouard Summary: Outputs now all graphs of convergence to period prevalence @@ -513,11 +517,11 @@ extern int errno; #define ODIRSEPARATOR '/' #endif -/* $Id: imach.c,v 1.154 2014/06/20 17:32:08 brouard Exp $ */ +/* $Id: imach.c,v 1.155 2014/08/25 18:32:34 brouard Exp $ */ /* $State: Exp $ */ -char version[]="Imach version 0.98nU, January 2014,INED-EUROREVES-Institut de longevite-Japan Society for the Promotion of Science (Grant-in-Aid for Scientific Research 25293121)"; -char fullversion[]="$Revision: 1.154 $ $Date: 2014/06/20 17:32:08 $"; +char version[]="Imach version 0.98nV, August 2014,INED-EUROREVES-Institut de longevite-Japan Society for the Promotion of Science (Grant-in-Aid for Scientific Research 25293121)"; +char fullversion[]="$Revision: 1.155 $ $Date: 2014/08/25 18:32:34 $"; char strstart[80]; char optionfilext[10], optionfilefiname[FILENAMELENGTH]; int erreur=0, nberr=0, nbwarn=0; /* Error number, number of errors number of warnings */ @@ -5408,8 +5412,8 @@ int main(int argc, char *argv[]) /*---------arguments file --------*/ if((ficpar=fopen(optionfile,"r"))==NULL) { - printf("Problem with optionfile %s with errno=%s\n",optionfile,strerror(errno)); - fprintf(ficlog,"Problem with optionfile %s with errno=%s\n",optionfile,strerror(errno)); + printf("Problem with optionfile '%s' with errno='%s'\n",optionfile,strerror(errno)); + fprintf(ficlog,"Problem with optionfile '%s' with errno='%s'\n",optionfile,strerror(errno)); fflush(ficlog); /* goto end; */ exit(70); @@ -6663,9 +6667,9 @@ Interval (in months) between two waves: sprintf(plotcmd,"\"%sgnuplot.exe\"",pathimach); #endif if(!stat(plotcmd,&info)){ - printf("Error gnuplot program not found: %s\n",plotcmd);fflush(stdout); + printf("Error or gnuplot program not found: %s\n",plotcmd);fflush(stdout); if(!stat(getenv("GNUPLOTBIN"),&info)){ - printf("Error gnuplot program not found: %s Environment GNUPLOTBIN not set.\n",plotcmd);fflush(stdout); + printf("Error or gnuplot program not found: %s Environment GNUPLOTBIN not set.\n",plotcmd);fflush(stdout); }else strcpy(pplotcmd,plotcmd); #ifdef UNIX