From 9a658d57467cf3f51110ec50bc7b50cd73993aaa Mon Sep 17 00:00:00 2001 From: Samo Penic <samo.penic@fe.uni-lj.si> Date: Tue, 06 Oct 2015 11:47:58 +0000 Subject: [PATCH] Well, another one. --- src/io.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/io.c b/src/io.c index ead2de3..f913762 100644 --- a/src/io.c +++ b/src/io.c @@ -454,6 +454,7 @@ {"dump-filename", required_argument,0, 'f'}, {"tape-options",required_argument,0,'c'}, {"tape-template", required_argument,0,0}, + {"dump-from-vtk",required_argument,0,0}, {0, 0, 0, 0} }; /* getopt_long stores the option index here. */ @@ -480,6 +481,9 @@ if(strcmp(long_options[option_index].name,"tape-template")==0){ strcpy(command_line_args.tape_templatefull,optarg); } + if(strcmp(long_options[option_index].name,"dump-from-vtk")==0){ + strcpy(command_line_args.dump_from_vtk,optarg); + } break; case 'c': -- Gitblit v1.9.3