diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-12-05 19:50:50 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-12-05 19:50:50 (GMT) |
commit | 9bea2a7ffbb51d14387fa71060ad6bafc8d443af (patch) | |
tree | 0d3c0a6c7ca5114139c571516556346765372960 /hl/src/H5IM.c | |
parent | a00d43c431a4ab6581ab482fc7ddd27a9269e5a3 (diff) | |
download | hdf5-9bea2a7ffbb51d14387fa71060ad6bafc8d443af.zip hdf5-9bea2a7ffbb51d14387fa71060ad6bafc8d443af.tar.gz hdf5-9bea2a7ffbb51d14387fa71060ad6bafc8d443af.tar.bz2 |
[svn-r13023]
cleaned compiler warnings on hl
Diffstat (limited to 'hl/src/H5IM.c')
-rw-r--r-- | hl/src/H5IM.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/hl/src/H5IM.c b/hl/src/H5IM.c index 060387c..8ca9806 100644 --- a/hl/src/H5IM.c +++ b/hl/src/H5IM.c @@ -523,10 +523,10 @@ herr_t H5IMlink_palette( hid_t loc_id, { hid_t image_id; - hid_t attr_type; - hid_t attr_id; - hid_t attr_space_id; - hid_t attr_class; + hid_t attr_type=-1; + hid_t attr_id=-1; + hid_t attr_space_id=-1; + hid_t attr_class=-1; hobj_ref_t ref; /* write a new reference */ hobj_ref_t *refbuf; /* buffer to read references */ hssize_t n_refs; @@ -875,9 +875,9 @@ herr_t H5IMget_palette_info( hid_t loc_id, { hid_t image_id; int has_pal; - hid_t attr_type; + hid_t attr_type=-1; hid_t attr_id; - hid_t attr_space_id; + hid_t attr_space_id=-1; hid_t attr_class; hssize_t n_refs; hsize_t dim_ref; @@ -989,9 +989,9 @@ herr_t H5IMget_palette( hid_t loc_id, { hid_t image_id; int has_pal; - hid_t attr_type; + hid_t attr_type=-1; hid_t attr_id; - hid_t attr_space_id; + hid_t attr_space_id=-1; hid_t attr_class; hssize_t n_refs; hsize_t dim_ref; |