[svn-r225] H5F_open has been changed due to the PHDF work. It needed an extra

argument of access-template.
This commit is contained in:
Albert Cheng 1998-02-05 22:02:00 -05:00
parent 238cccd5e8
commit f23e12ca73

View File

@ -580,7 +580,7 @@ main(int argc, char *argv[])
if (NULL == (f = H5F_open(FILETYPE, FILENAME,
(H5F_ACC_CREAT | H5F_ACC_WRITE | H5F_ACC_TRUNC |
H5F_ACC_DEBUG),
creation_template))) {
creation_template, NULL))) {
printf("Cannot create file %s; test aborted\n", FILENAME);
exit(1);
}