diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2005-06-24 15:41:35 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2005-06-24 15:41:35 (GMT) |
commit | ace21943c3f43c599e52bbae0512f0cb17a38223 (patch) | |
tree | 62954b99005d60bd195f3c6c94175680bebade41 /hl/src/H5IM.c | |
parent | 351b8a7b7c0550755827c2a71be13d90ee2e0363 (diff) | |
download | hdf5-ace21943c3f43c599e52bbae0512f0cb17a38223.zip hdf5-ace21943c3f43c599e52bbae0512f0cb17a38223.tar.gz hdf5-ace21943c3f43c599e52bbae0512f0cb17a38223.tar.bz2 |
[svn-r10984]
Purpose: Bug fix
Description: mismatched "static" declaration for notorious H5IM_find_palette function
caused compilation to fail on sleipnir.
Solution: Remove it for now. Function should go back to Fortran part of HL library.
Platforms tested: sleipnir
Misc. update:
Diffstat (limited to 'hl/src/H5IM.c')
-rw-r--r-- | hl/src/H5IM.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hl/src/H5IM.c b/hl/src/H5IM.c index 71841a9..23f86e0 100644 --- a/hl/src/H5IM.c +++ b/hl/src/H5IM.c @@ -220,7 +220,7 @@ static herr_t find_palette( hid_t loc_id, const char *name, void *op_data ) *------------------------------------------------------------------------- */ -static herr_t H5IM_find_palette( hid_t loc_id ) +herr_t H5IM_find_palette( hid_t loc_id ) { unsigned int attr_num; /* Starting attribute to look up */ |