diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-04-08 20:26:42 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-04-08 20:26:42 (GMT) |
commit | 86b0cc22c883c3c8faf3242cf10563577771ed00 (patch) | |
tree | 8bf0437f0a4beed2e87a34a3469fbf10ba50fcc8 /src/H5RS.c | |
parent | 351d3f5ebbaebf8daaa519f9f8e75c9d9d6cb48b (diff) | |
download | hdf5-86b0cc22c883c3c8faf3242cf10563577771ed00.zip hdf5-86b0cc22c883c3c8faf3242cf10563577771ed00.tar.gz hdf5-86b0cc22c883c3c8faf3242cf10563577771ed00.tar.bz2 |
[svn-r6598] Purpose:
code warrior port
Description:
added some type casts (char*) for CW portability
Solution:
Platforms tested:
w2000(CW , MS)
linux
arabica
modi4
Misc. update:
Diffstat (limited to 'src/H5RS.c')
-rw-r--r-- | src/H5RS.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -153,7 +153,7 @@ H5RS_wrap(const char *s) HGOTO_ERROR(H5E_RS,H5E_NOSPACE,NULL,"memory allocation failed"); /* Set the internal fields */ - ret_value->s=s; + ret_value->s=(char*)s; ret_value->wrapped=1; ret_value->n=1; |