Skip to content
Snippets Groups Projects
Commit 6d73901b authored by William F Godoy's avatar William F Godoy
Browse files

Fix for issue #295

Missing cmake FCInterface macro FC_GLOBAL for non-MPI function
parent 01ce61e9
No related branches found
No related tags found
1 merge request!298Fix for issue #295
......@@ -43,7 +43,8 @@ void FC_GLOBAL(adios2_init_f2c, ADIOS2_INIT_F2C)(adios2_ADIOS **adios,
const int *debug_mode,
int *ierr)
{
adios2_init_config_f2c_(adios, "", debug_mode, ierr);
FC_GLOBAL(adios2_init_config_f2c, ADIOS2_INIT_CONFIG_F2C)
(adios, "", debug_mode, ierr);
}
void FC_GLOBAL(adios2_init_config_f2c,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment