diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2017-02-28 05:23:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2017-02-28 05:23:44 (GMT) |
commit | e5fb4191de1129f58cc7b9b8ee67f4cec1488f39 (patch) | |
tree | c6151b0582ef769f95549bc1c231fb3609408733 /test/links.c | |
parent | fd268dca96ea76ef0ec4425434502343ee2055d7 (diff) | |
download | hdf5-e5fb4191de1129f58cc7b9b8ee67f4cec1488f39.zip hdf5-e5fb4191de1129f58cc7b9b8ee67f4cec1488f39.tar.gz hdf5-e5fb4191de1129f58cc7b9b8ee67f4cec1488f39.tar.bz2 |
Revert "Fix some more signed -> unsigned value issues with cache data structures, also"
This reverts commit 4b5e05c084f93c35dae946c2c9e814d565a613b0.
Diffstat (limited to 'test/links.c')
-rw-r--r-- | test/links.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/test/links.c b/test/links.c index 3364c7e..d5a3b83 100644 --- a/test/links.c +++ b/test/links.c @@ -21,22 +21,18 @@ */ /* - * This file needs to access private information from the H5FD package. - * This file also needs to access the file driver testing code. - */ -#define H5FD_FRIEND /*suppress error about including H5FDpkg */ -#define H5FD_TESTING - -/* * This file needs to access private information from the H5G package. * This file also needs to access the group testing code. */ #define H5G_FRIEND /*suppress error about including H5Gpkg */ #define H5G_TESTING +#define H5FD_FRIEND /*suppress error about including H5FDpkg */ +#define H5FD_TESTING + #include "h5test.h" #include "H5srcdir.h" -#include "H5FDpkg.h" /* File drivers */ +#include "H5FDpkg.h" /* File drivers */ #include "H5Gpkg.h" /* Groups */ #include "H5Iprivate.h" /* IDs */ #include "H5Lprivate.h" /* Links */ |