diff options
Diffstat (limited to 'test/extend.c')
-rw-r--r-- | test/extend.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/extend.c b/test/extend.c index cae6e0c..25f7ee7 100644 --- a/test/extend.c +++ b/test/extend.c @@ -64,9 +64,10 @@ main (void) /* Create the file */ 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 dataset which is originally NX by NY */ if ((cparms = H5Pcreate (H5P_DATASET_CREATE))<0) goto error; if (H5Pset_chunk (cparms, 2, chunk_dims)<0) goto error; |