From 9bea2a7ffbb51d14387fa71060ad6bafc8d443af Mon Sep 17 00:00:00 2001 From: Pedro Vicente Nunes Date: Tue, 5 Dec 2006 14:50:50 -0500 Subject: [svn-r13023] cleaned compiler warnings on hl --- hl/src/H5IM.c | 16 ++++++++-------- hl/src/H5LT.c | 4 +++- 2 files changed, 11 insertions(+), 9 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; diff --git a/hl/src/H5LT.c b/hl/src/H5LT.c index 12036ea..53f8ed9 100644 --- a/hl/src/H5LT.c +++ b/hl/src/H5LT.c @@ -3623,4 +3623,6 @@ out: return -1; } -#endif /* NOT_YET */ \ No newline at end of file +#endif /* NOT_YET */ + + -- cgit v0.12