From b9132a9424dfd9873c86155c5256cd0a73ad5526 Mon Sep 17 00:00:00 2001 From: Larry Knox Date: Wed, 2 Aug 2023 08:01:22 -0500 Subject: [PATCH] Add missing ; --- test/API/tfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/API/tfile.c b/test/API/tfile.c index 8f1cc281b4e..247a2491361 100644 --- a/test/API/tfile.c +++ b/test/API/tfile.c @@ -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");