diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-13 19:21:41 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-13 19:21:41 (GMT) |
commit | 9bc89569d6990a1ebbe8fa595a23d5df59575c7f (patch) | |
tree | 68f37a5fbec8709187c2b4fe9521d0ce8434388b /fortran/src/H5If.c | |
parent | ed23cda102d6c9312d863d4a2b5b2b0ec12f7224 (diff) | |
download | hdf5-9bc89569d6990a1ebbe8fa595a23d5df59575c7f.zip hdf5-9bc89569d6990a1ebbe8fa595a23d5df59575c7f.tar.gz hdf5-9bc89569d6990a1ebbe8fa595a23d5df59575c7f.tar.bz2 |
[svn-r7611] Purpose:
Code cleanup
Description:
Cleaned up various compiler warnings
Platforms tested:
FreeBSD 4.9 (sleipnir)
Linux 2.4 (verbena) w/FORTRAN
too minor for h5committest
Diffstat (limited to 'fortran/src/H5If.c')
-rw-r--r-- | fortran/src/H5If.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/src/H5If.c b/fortran/src/H5If.c index 9811788..1de90d6 100644 --- a/fortran/src/H5If.c +++ b/fortran/src/H5If.c @@ -67,7 +67,7 @@ nh5iget_name_c(hid_t_f *obj_id, _fcd buf, size_t_f *buf_size, size_t_f *name_siz * Allocate buffer to hold name of an attribute */ c_buf_size = (size_t)*buf_size; - c_buf = (char *)HDmalloc((int)c_buf_size +1); + c_buf = (char *)HDmalloc(c_buf_size +1); if (c_buf == NULL) return ret_value; /* |