diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-11-12 22:54:11 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-11-12 22:54:11 (GMT) |
commit | 9b3826267baa99ed6fee111afb7990550800bb30 (patch) | |
tree | 4ca939a4017ecfbc21c8741a2b6203b9cb6a399f /src/H5FPserver.c | |
parent | 10fb09658676e19e89a4fd0377fb9e5d0da35cdb (diff) | |
download | hdf5-9b3826267baa99ed6fee111afb7990550800bb30.zip hdf5-9b3826267baa99ed6fee111afb7990550800bb30.tar.gz hdf5-9b3826267baa99ed6fee111afb7990550800bb30.tar.bz2 |
[svn-r6084] Purpose:
FPHDF5 Fixups
Description:
- Stopped using API calls in the H5FPclient code. It now uses
internal library calls.
- Removed some FIXME comments because they've been fixed.
- Small fix for an enum starting at 37 for no reason :-)
Platforms tested:
Eirene (only affects FPHDF5, so no need to test 3 platforms just yet).
Diffstat (limited to 'src/H5FPserver.c')
-rw-r--r-- | src/H5FPserver.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5FPserver.c b/src/H5FPserver.c index d6df905..c9bea7f 100644 --- a/src/H5FPserver.c +++ b/src/H5FPserver.c @@ -692,7 +692,8 @@ H5FP_add_new_file_struct_to_list(unsigned int sap_file_id, char *filename) if ((fs = H5FP_new_file_struct_node(sap_file_id, filename)) != NULL) { if (!H5TB_dins(fs_tree, (void *)fs, NULL)) - HGOTO_ERROR(H5E_FPHDF5, H5E_CANTINSERT, FAIL, "can't insert file structure into tree"); + HGOTO_ERROR(H5E_FPHDF5, H5E_CANTINSERT, FAIL, + "can't insert file structure into tree"); ret_value = SUCCEED; } @@ -797,7 +798,8 @@ H5FP_sap_handle_open_request(struct SAP_request req, char *mdata, int md_len) if (H5FP_add_new_file_struct_to_list(new_file_id, mdata) != SUCCEED) /* FIXME: This should be a different error message */ - HGOTO_ERROR(H5E_FPHDF5, H5E_CANTINSERT, FAIL, "can't insert file structure into tree"); + HGOTO_ERROR(H5E_FPHDF5, H5E_CANTINSERT, FAIL, + "can't insert file structure into tree"); /* broadcast the file id to all processes */ /* FIXME: Isn't there some way to broadcast this result to the barrier group? -QAK */ |