[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.
This commit is contained in:
Elena Pourmal 2007-02-28 17:14:18 -05:00
parent 8c176b73d2
commit 78e348bf9c

View File

@ -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;