diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-12-17 16:39:17 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-12-17 16:39:17 (GMT) |
commit | 8f62cb43da04d46735384197f0bdb8a3dcf05df8 (patch) | |
tree | bee4efc19f5c022f532af8905861071e641a8058 /test/tfile.c | |
parent | cd7b4b8b90adc487f9cd4ee05f2425eeb5f7f84d (diff) | |
download | hdf5-8f62cb43da04d46735384197f0bdb8a3dcf05df8.zip hdf5-8f62cb43da04d46735384197f0bdb8a3dcf05df8.tar.gz hdf5-8f62cb43da04d46735384197f0bdb8a3dcf05df8.tar.bz2 |
[svn-r7967] Purpose:
Code cleanup for VS.NET
Description:
Clean up several issues that VS.NET was having problems with.
Platforms tested:
Eyeballed against Kent's bug reports.
Diffstat (limited to 'test/tfile.c')
-rw-r--r-- | test/tfile.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/tfile.c b/test/tfile.c index 63815d6..6799968 100644 --- a/test/tfile.c +++ b/test/tfile.c @@ -53,7 +53,7 @@ #define F3_SYM_INTERN_K F2_SYM_INTERN_K #define FILE3 "tfile3.h5" -#define GROUP_NAME "/group" +#define GRP_NAME "/group" #define DSET_NAME "dataset" #define ATTR_NAME "attr" #define TYPE_NAME "type" @@ -848,7 +848,7 @@ test_get_file_id(void) /* Create a group in the file. Make a duplicated file ID from the group. * And close this duplicated ID */ - group_id = H5Gcreate(fid, GROUP_NAME, 0); + group_id = H5Gcreate(fid, GRP_NAME, 0); CHECK(group_id, FAIL, "H5Gcreate"); /* Test H5Iget_file_id() */ @@ -868,7 +868,7 @@ test_get_file_id(void) fid = H5Fopen(FILE4, H5F_ACC_RDWR, H5P_DEFAULT); CHECK(fid, FAIL, "H5Fcreate"); - group_id = H5Gopen(fid, GROUP_NAME); + group_id = H5Gopen(fid, GRP_NAME); CHECK(group_id, FAIL, "H5Gcreate"); /* Test H5Iget_file_id() */ |