summaryrefslogtreecommitdiffstats
path: root/src/H5system.c
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2007-02-28 22:14:18 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2007-02-28 22:14:18 (GMT)
commit78e348bf9c043dcf9e27d13f53d549187ea4686c (patch)
treea64bd4d694d5fef1027910a31d43853177b2a24a /src/H5system.c
parent8c176b73d261670df531fb7dc4eb6b924aa10a78 (diff)
downloadhdf5-78e348bf9c043dcf9e27d13f53d549187ea4686c.zip
hdf5-78e348bf9c043dcf9e27d13f53d549187ea4686c.tar.gz
hdf5-78e348bf9c043dcf9e27d13f53d549187ea4686c.tar.bz2
[svn-r13434] Used const char * instead of char pointer for HDremove_all function that is used
on VMS. This should fix C++ compilation failures on VMS. Platforms tested: kagiso, VMS is stilll going on.
Diffstat (limited to 'src/H5system.c')
-rw-r--r--src/H5system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5system.c b/src/H5system.c
index 30367ce..63ef9aa 100644
--- a/src/H5system.c
+++ b/src/H5system.c
@@ -559,7 +559,7 @@ void HDsrand(unsigned int seed)
*/
#ifdef H5_VMS
int
-HDremove_all(char *fname)
+HDremove_all(const char *fname)
{
int ret_value = -1;
char *_fname;