Skip to content

Commit

Permalink
HDF5 Backend - fix dry run return fall-through in HDF5_Delete (#430)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhendersonHDF committed Jul 29, 2022
1 parent 7fa837f commit efa8b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aiori-HDF5.c
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ static void HDF5_Close(aiori_fd_t *afd, aiori_mod_opt_t * param)
static void HDF5_Delete(char *testFileName, aiori_mod_opt_t * param)
{
if(hints->dryRun)
return
return;
MPIIO_Delete(testFileName, param);
return;
}
Expand Down

0 comments on commit efa8b26

Please sign in to comment.