From a17e910df3b4849571e5ed9cf2a7767f1b461676 Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@gmail.com> Date: Tue, 14 Jun 2016 18:30:55 +0000 Subject: [PATCH] Fixed restarting when inititer is not 0 --- src/main.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.c b/src/main.c index 7c1ff29..c2e51af 100644 --- a/src/main.c +++ b/src/main.c @@ -54,13 +54,13 @@ if(fd!=NULL){ arguments_no=fscanf(fd,"%u", &start_iteration); if(arguments_no==0){ - ts_fprintf(stdout,"No information of start iteration in .status file"); + ts_fprintf(stdout,"No information of start iteration in .status file\n"); } fclose(fd); - start_iteration++; + start_iteration++; } else - ts_fprintf(stdout,"No .status file. The iteration count will start from 0"); + ts_fprintf(stdout,"No .status file. The iteration count will start from 0\n"); /* Here you should read new tape file, reassign some values in vertex from the tape and assign read tape to vesicle->tape */ // tape=parsetape(command_line_args.tape_fullfilename); // vesicle=vtk2vesicle(command_line_args.dump_from_vtk,tape); -- Gitblit v1.9.3