diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2013-06-28 21:52:26 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2013-06-28 21:52:26 (GMT) |
commit | e74f49bdc142517aab4ab2e6823edef186895971 (patch) | |
tree | 9791b4574454f916d026249a92304ee1e4122680 | |
parent | 33e77ac8fa7a2b6d61be263072873dd6c8be1824 (diff) | |
download | hdf5-e74f49bdc142517aab4ab2e6823edef186895971.zip hdf5-e74f49bdc142517aab4ab2e6823edef186895971.tar.gz hdf5-e74f49bdc142517aab4ab2e6823edef186895971.tar.bz2 |
[svn-r23847] minor edits
-rw-r--r-- | src/H5VLiod_file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5VLiod_file.c b/src/H5VLiod_file.c index 451b5bb..3dc9a3e 100644 --- a/src/H5VLiod_file.c +++ b/src/H5VLiod_file.c @@ -77,7 +77,7 @@ H5VL_iod_server_file_create_cb(AXE_engine_t UNUSED axe_engine, if(0 == ret || EEXISTS == ret) { /* root group has been created, open it */ if (iod_obj_open_write(coh, input->root_id, NULL, &root_oh, NULL) < 0) - HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "can't open current group"); + HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "can't open root group"); } else { HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "can't create root group"); @@ -183,6 +183,7 @@ H5VL_iod_server_file_open_cb(AXE_engine_t UNUSED axe_engine, fprintf(stderr, "Start file open %s %d %d\n", input->name, input->flags, input->fapl_id); #endif + /* open the container */ if(iod_container_open(input->name, NULL /*hints*/, mode, &coh, NULL /*event*/)) HGOTO_ERROR(H5E_FILE, H5E_CANTINIT, FAIL, "can't open file"); |