diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-04-11 15:36:06 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-04-11 15:36:06 (GMT) |
commit | 78158e8dbffcbf025257a72bb42c1fbe8c7660b7 (patch) | |
tree | 5947882877f5cbdee8b70ccfb726e3adef27f8ae /src/H5T.c | |
parent | 4e3029bf8286175909d678d67bf40f477402ba46 (diff) | |
download | hdf5-78158e8dbffcbf025257a72bb42c1fbe8c7660b7.zip hdf5-78158e8dbffcbf025257a72bb42c1fbe8c7660b7.tar.gz hdf5-78158e8dbffcbf025257a72bb42c1fbe8c7660b7.tar.bz2 |
[svn-r13635] Description:
Clean up code and reduce compiler warnings...
Tested on:
Mac OS X/32 10.4.9 (amazon)
Diffstat (limited to 'src/H5T.c')
-rw-r--r-- | src/H5T.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4639,7 +4639,7 @@ done: H5O_loc_t * H5T_oloc(H5T_t *dt) { - H5O_loc_t *ret_value = NULL; + H5O_loc_t *ret_value; FUNC_ENTER_NOAPI(H5T_oloc, NULL) @@ -4678,7 +4678,7 @@ done: H5G_name_t * H5T_nameof(H5T_t *dt) { - H5G_name_t *ret_value = NULL; + H5G_name_t *ret_value; FUNC_ENTER_NOAPI(H5T_nameof, NULL) |