summaryrefslogtreecommitdiffstats
path: root/test/err_compat.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-07-28 14:08:44 (GMT)
committerGitHub <noreply@github.com>2023-07-28 14:08:44 (GMT)
commit9ef2f993cfc7173712729fb40b34d1edae8509d9 (patch)
tree937a98f4d50cf0cca08fa105ae37589aedb8975c /test/err_compat.c
parentf563c2b926445f7a975553bc7742a38f42d3b6f4 (diff)
downloadhdf5-9ef2f993cfc7173712729fb40b34d1edae8509d9.zip
hdf5-9ef2f993cfc7173712729fb40b34d1edae8509d9.tar.gz
hdf5-9ef2f993cfc7173712729fb40b34d1edae8509d9.tar.bz2
Sync test dir w/ develop (#3303)
Diffstat (limited to 'test/err_compat.c')
-rw-r--r--test/err_compat.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/err_compat.c b/test/err_compat.c
index 62a310f..f2bd2ab 100644
--- a/test/err_compat.c
+++ b/test/err_compat.c
@@ -24,15 +24,15 @@ main(void)
}
#else /* H5_NO_DEPRECATED_SYMBOLS */
-const char *FILENAME[] = {"errors_compat", NULL};
+static const char *FILENAME[] = {"errors_compat", NULL};
#define DIM0 100
#define DIM1 200
-int **ipoints2 = NULL;
-int **icheck2 = NULL;
-int *ipoints2_data = NULL;
-int *icheck2_data = NULL;
+static int **ipoints2 = NULL;
+static int **icheck2 = NULL;
+static int *ipoints2_data = NULL;
+static int *icheck2_data = NULL;
#define DSET_NAME "a_dataset"
@@ -345,7 +345,7 @@ test_h5epush1(hid_t file)
did =
H5Dcreate2(H5I_INVALID_HID, DSET_NAME, H5T_STD_I32BE, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
}
- H5E_END_TRY;
+ H5E_END_TRY
/* Create the dataset */
if ((did = H5Dcreate2(file, DSET_NAME, H5T_STD_I32BE, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)