summaryrefslogtreecommitdiffstats
path: root/test/gen_bad_compound.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/gen_bad_compound.c')
-rw-r--r--test/gen_bad_compound.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/test/gen_bad_compound.c b/test/gen_bad_compound.c
index bd857b4..ec0933f 100644
--- a/test/gen_bad_compound.c
+++ b/test/gen_bad_compound.c
@@ -26,16 +26,17 @@
#define FILENAME "bad_compound.h5"
-int main()
+int
+main()
{
- hid_t file;
- hid_t cmpd_dt;
- hid_t sid;
- hid_t did;
- hid_t aid;
- hid_t gid;
- hsize_t dim = 1;
- herr_t ret;
+ hid_t file;
+ hid_t cmpd_dt;
+ hid_t sid;
+ hid_t did;
+ hid_t aid;
+ hid_t gid;
+ hsize_t dim = 1;
+ herr_t ret;
/* Create compound datatype, but don't insert fields */
cmpd_dt = H5Tcreate(H5T_COMPOUND, (size_t)8);
@@ -79,6 +80,5 @@ int main()
ret = H5Fclose(file);
assert(ret >= 0);
- return(0);
+ return (0);
}
-