diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-10-16 22:53:56 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-10-16 22:53:56 (GMT) |
commit | 84bf19bec42e2c53114727df2e239aa3fecb1071 (patch) | |
tree | a16377205eda598abfc6d37b2a68113dd8060816 /src/H5S.c | |
parent | 775bd09974b4681672bce3c1a10948bad5d482da (diff) | |
download | hdf5-84bf19bec42e2c53114727df2e239aa3fecb1071.zip hdf5-84bf19bec42e2c53114727df2e239aa3fecb1071.tar.gz hdf5-84bf19bec42e2c53114727df2e239aa3fecb1071.tar.bz2 |
[svn-r12767] Description:
Code cleanup to improve formatting & reduce compiler warnings.
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5S.c')
-rw-r--r-- | src/H5S.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1720,7 +1720,7 @@ H5S_encode(H5S_t *obj, unsigned char *buf, size_t *nalloc) FUNC_ENTER_NOAPI(H5S_encode, FAIL) /* Allocate "fake" file structure */ - if(NULL == (f = H5F_fake_alloc(0))) + if(NULL == (f = H5F_fake_alloc((size_t)0))) HGOTO_ERROR(H5E_DATASPACE, H5E_CANTALLOC, FAIL, "can't allocate fake file struct") /* Find out the size of buffer needed for extent */ |