From 75d98c7e3b80238c18f20e6262dd9d1b38539e69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Tue, 17 Feb 2015 13:40:09 +0100 Subject: [PATCH] Remove uneeded function argument. --- examples/opm_init_check.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/opm_init_check.cpp b/examples/opm_init_check.cpp index ba848ad35..b899acf2b 100644 --- a/examples/opm_init_check.cpp +++ b/examples/opm_init_check.cpp @@ -315,7 +315,7 @@ void initEclipseTrans(TransGraph& eclipseTrans , const ecl_grid_type * ecl_grid -void dump_transGraph( DeckConstPtr deck , std::shared_ptr eclipseState , const ecl_grid_type * ecl_grid , const ecl_file_type * ecl_init , size_t verbosity) { +void dump_transGraph( DeckConstPtr deck , std::shared_ptr eclipseState , const ecl_grid_type * ecl_grid , const ecl_file_type * ecl_init) { int nx = ecl_grid_get_nx( ecl_grid ); int ny = ecl_grid_get_ny( ecl_grid ); int nz = ecl_grid_get_nz( ecl_grid ); @@ -354,7 +354,7 @@ int main(int argc, char** argv) { std::cout << "Loading eclipse EGRID file ....: " << grid_file << std::endl; ecl_grid_type * ecl_grid = ecl_grid_alloc( grid_file.c_str() ); - dump_transGraph( deck , state , ecl_grid , ecl_init , 3); + dump_transGraph( deck , state , ecl_grid , ecl_init); ecl_file_close( ecl_init ); ecl_grid_free( ecl_grid );