Skip to content

Commit

Permalink
fix: add ;
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee committed Aug 22, 2023
1 parent 9b886e7 commit 5d73643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/H5FDs3comms.c
Original file line number Diff line number Diff line change
Expand Up @@ -2099,7 +2099,7 @@ H5FD_s3comms_load_aws_profile(const char *profile_name, char *key_id_out, char *
(*secret_access_key_out == 0) ? secret_access_key_out : NULL,
(*aws_region_out == 0) ? aws_region_out : NULL,
(*session_token_out == 0) ? session_token_out : NULL) == FAIL)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "unable to load from aws config")
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "unable to load from aws config");
if (fclose(credfile) == EOF)
HGOTO_ERROR(H5E_FILE, H5E_CANTCLOSEFILE, FAIL, "unable to close config file");
credfile = NULL;
Expand Down

0 comments on commit 5d73643

Please sign in to comment.