diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2007-02-28 22:14:18 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2007-02-28 22:14:18 (GMT) |
commit | 78e348bf9c043dcf9e27d13f53d549187ea4686c (patch) | |
tree | a64bd4d694d5fef1027910a31d43853177b2a24a /src | |
parent | 8c176b73d261670df531fb7dc4eb6b924aa10a78 (diff) | |
download | hdf5-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')
-rw-r--r-- | src/H5system.c | 2 |
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; |