diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2015-03-09 18:45:44 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2015-03-09 18:45:44 (GMT) |
commit | 31ffa03914360f530544c48d6a930abc5009e3d8 (patch) | |
tree | 423d8b500386470b0e7371091184214dd9d5fcae /hl/examples/ex_image1.c | |
parent | 64f65d96d945210c23b28e124d286505e31bb68c (diff) | |
download | hdf5-31ffa03914360f530544c48d6a930abc5009e3d8.zip hdf5-31ffa03914360f530544c48d6a930abc5009e3d8.tar.gz hdf5-31ffa03914360f530544c48d6a930abc5009e3d8.tar.bz2 |
[svn-r26405] Removed compiler warnings, hl/examples:
HDF5-237
tested: h5committest
Diffstat (limited to 'hl/examples/ex_image1.c')
-rw-r--r-- | hl/examples/ex_image1.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/hl/examples/ex_image1.c b/hl/examples/ex_image1.c index 96bc7c7..18ad903 100644 --- a/hl/examples/ex_image1.c +++ b/hl/examples/ex_image1.c @@ -24,7 +24,6 @@ unsigned char buf [ WIDTH*HEIGHT ]; int main( void ) { hid_t file_id; - herr_t status; hsize_t pal_dims[] = {PAL_ENTRIES,3}; size_t i, j; int n, space; @@ -56,16 +55,16 @@ int main( void ) file_id = H5Fcreate( "ex_image1.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT ); /* make the image */ - status = H5IMmake_image_8bit( file_id, "image1", (hsize_t)WIDTH, (hsize_t)HEIGHT, buf ); + H5IMmake_image_8bit( file_id, "image1", (hsize_t)WIDTH, (hsize_t)HEIGHT, buf ); /* make a palette */ - status = H5IMmake_palette( file_id, "pallete", pal_dims, pal ); + H5IMmake_palette( file_id, "pallete", pal_dims, pal ); /* attach the palette to the image */ - status = H5IMlink_palette( file_id, "image1", "pallete" ); + H5IMlink_palette( file_id, "image1", "pallete" ); /* close the file. */ - status = H5Fclose( file_id ); + H5Fclose( file_id ); return 0; |