From 86b0cc22c883c3c8faf3242cf10563577771ed00 Mon Sep 17 00:00:00 2001 From: Pedro Vicente Nunes Date: Tue, 8 Apr 2003 15:26:42 -0500 Subject: [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: --- src/H5FDlog.c | 4 ++-- src/H5RS.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/H5FDlog.c b/src/H5FDlog.c index b8722f4..1073ab6 100644 --- a/src/H5FDlog.c +++ b/src/H5FDlog.c @@ -354,8 +354,8 @@ H5Pset_fapl_log(hid_t fapl_id, const char *logfile, unsigned flags, size_t buf_s if(NULL == (plist = H5P_object_verify(fapl_id,H5P_FILE_ACCESS))) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access property list"); - - fa.logfile=logfile; + + fa.logfile=(char*)logfile; fa.flags=flags; fa.buf_size=buf_size; ret_value= H5P_set_driver(plist, H5FD_LOG, &fa); diff --git a/src/H5RS.c b/src/H5RS.c index fcccbb5..d710774 100644 --- a/src/H5RS.c +++ b/src/H5RS.c @@ -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; -- cgit v0.12