diff --git a/DESCRIPTION b/DESCRIPTION
index aa364b19f4050320b09cfd2c42d2ebee2d30e894..63011b1de60a25787c5b1b897b0091c8c10fa699 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,8 +1,8 @@
 Package: airGR
 Type: Package
 Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling
-Version: 1.2.9.32
-Date: 2019-03-20
+Version: 1.2.9.33
+Date: 2019-03-21
 Authors@R: c(
   person("Laurent", "Coron", role = c("aut", "trl"), comment = c(ORCID = "0000-0002-1503-6204")),
   person("Charles", "Perrin", role = c("aut", "ths"), comment = c(ORCID = "0000-0001-8552-1881")),
diff --git a/NEWS.rmd b/NEWS.rmd
index f2756cb95112181809844e6bdb677cd559dab7aa..6e4cff93f17a966327a9e126dbff1345736d5193 100644
--- a/NEWS.rmd
+++ b/NEWS.rmd
@@ -13,7 +13,7 @@ output:
 
 
 
-### 1.2.9.32 Release Notes (2019-03-20) 
+### 1.2.9.33 Release Notes (2019-03-21) 
 
 
 
diff --git a/R/RunModel.R b/R/RunModel.R
index 80d6b370bb029c4e66ad78cea419422ad5bcb364..2d57d454b5335645e6aff813b270cc57ec18d56f 100644
--- a/R/RunModel.R
+++ b/R/RunModel.R
@@ -1,4 +1,4 @@
 RunModel <- function(InputsModel, RunOptions, Param, FUN_MOD) {
   FUN_MOD <- match.fun(FUN_MOD)
-  return(FUN_MOD(InputsModel, RunOptions, Param))
+  return(FUN_MOD(InputsModel = InputsModel, RunOptions = RunOptions, Param = Param))
 }