From 4a547dfb22325538bea326894c7c6979769ba4bb Mon Sep 17 00:00:00 2001 From: Stephan Schulz <stephan.schulz-x2q@rub.de> Date: Fri, 15 Nov 2019 14:07:55 +0100 Subject: [PATCH] fix correct dummy argument sequence for set_proc_grid_params --- src/ALL_module_obj.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ALL_module_obj.F90 b/src/ALL_module_obj.F90 index 9804559..0cdb91e 100644 --- a/src/ALL_module_obj.F90 +++ b/src/ALL_module_obj.F90 @@ -135,7 +135,7 @@ contains ! TODO these nloc and nsize, must always be dim? Which has been set previously! ! If the lengths are irrelevant, we may do away with the safety and just bind the C function to ! the derived type. - call all_set_proc_grid_params_f(this%object, loc, this%dim, ranks, this%dim) + call all_set_proc_grid_params_f(this%object, this%dim, loc, this%dim, ranks) end subroutine subroutine ALL_set_proc_tag(this, tag) class(ALL_t), intent(in) :: this -- GitLab