From cde3e258411adfcb026bb231f778e9a66737bfee Mon Sep 17 00:00:00 2001 From: Yen-Chen Chen <yen-chen.chen@kit.edu> Date: Mon, 9 Dec 2024 10:26:24 +0000 Subject: [PATCH] Fix falsely deleted nml variable (icon-libraries/libfortran-support!104) ## What is the bug The variable `nnml` is falsely deleted in https://gitlab.dkrz.de/icon-libraries/libfortran-support/-/merge_requests/94. Which causes error in dace that uses `nnml` from `mo_namelist`. ## How do you fix it Add back the variable. Merged-by: Yen-Chen Chen <yen-chen.chen@kit.edu> Changelog: bugfix --- src/mo_namelist.F90 | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mo_namelist.F90 b/src/mo_namelist.F90 index 32522a3..914e81f 100644 --- a/src/mo_namelist.F90 +++ b/src/mo_namelist.F90 @@ -37,6 +37,7 @@ MODULE mo_namelist PUBLIC :: open_nml_output PUBLIC :: close_nml_output + PUBLIC :: nnml ! return values of function 'position_nml': -- GitLab