Skip to content

Commit

Permalink
Add missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
lrknox committed Aug 2, 2023
1 parent 7fdb458 commit b9132a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/API/tfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ test_file_reopen(void)

/* Create a dataset in the file */
sid = H5Screate_simple(1, &dims, &dims);
CHECK_I(sid, "H5Screate_simple")
CHECK_I(sid, "H5Screate_simple");
did = H5Dcreate2(fid, REOPEN_DSET, H5T_NATIVE_INT, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
CHECK_I(did, "H5Dcreate2");

Expand Down

0 comments on commit b9132a9

Please sign in to comment.