diff options
Diffstat (limited to 'test/cmpd_dset.c')
-rw-r--r-- | test/cmpd_dset.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/cmpd_dset.c b/test/cmpd_dset.c index 714c810..4ccd060 100644 --- a/test/cmpd_dset.c +++ b/test/cmpd_dset.c @@ -148,9 +148,10 @@ main (int argc, char *argv[]) /* Create the file */ fapl = h5_fileaccess(); h5_fixname(FILENAME[0], fapl, filename, sizeof(filename)); - if ((file = H5Fcreate (filename, H5F_ACC_TRUNC|H5F_ACC_DEBUG, - H5P_DEFAULT, fapl))<0) goto error; - + if ((file = H5Fcreate (filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl))<0) { + goto error; + } + /* Create the data space */ if ((space = H5Screate_simple (2, dim, NULL))<0) goto error; |