diff options
Diffstat (limited to 'test/gen_nullspace.c')
-rw-r--r-- | test/gen_nullspace.c | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/test/gen_nullspace.c b/test/gen_nullspace.c index 26df3f1..9002309 100644 --- a/test/gen_nullspace.c +++ b/test/gen_nullspace.c @@ -26,19 +26,19 @@ #include "h5test.h" -#define NULLFILE "tnullspace.h5" -#define NULLDATASET "null_dataset" -#define NULLATTR "null_attribute" +#define NULLFILE "tnullspace.h5" +#define NULLDATASET "null_dataset" +#define NULLATTR "null_attribute" int main(void) { - hid_t fid; /* File ID */ - hid_t gid; /* Group ID */ - hid_t sid; /* Dataspace ID */ - hid_t did; /* Dataset ID */ - hid_t attr; /* Attribute ID */ - herr_t H5_ATTR_NDEBUG_UNUSED ret; /* Generic return value */ + hid_t fid; /* File ID */ + hid_t gid; /* Group ID */ + hid_t sid; /* Dataspace ID */ + hid_t did; /* Dataset ID */ + hid_t attr; /* Attribute ID */ + herr_t H5_ATTR_NDEBUG_UNUSED ret; /* Generic return value */ /* Create the file */ fid = H5Fcreate(NULLFILE, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); @@ -81,5 +81,3 @@ main(void) return EXIT_SUCCESS; } - - |