diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-12-20 16:29:00 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-12-20 16:29:00 (GMT) |
commit | c50cd597ad0acbc888a56335dc52a183b2c4c63a (patch) | |
tree | 7e763115fa4239e0e033498104db5ef91cb309b5 /src/H5system.c | |
parent | a211b4945bd0b160cdd05e332fa37e17c255cc8b (diff) | |
download | hdf5-c50cd597ad0acbc888a56335dc52a183b2c4c63a.zip hdf5-c50cd597ad0acbc888a56335dc52a183b2c4c63a.tar.gz hdf5-c50cd597ad0acbc888a56335dc52a183b2c4c63a.tar.bz2 |
HDFFV-10307 Add HD prefix
Diffstat (limited to 'src/H5system.c')
-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 7b3a0eb..719b7e0 100644 --- a/src/H5system.c +++ b/src/H5system.c @@ -1043,7 +1043,7 @@ H5_build_extpath(const char *name, char **extpath /*out*/) * Unix: does not apply */ if(H5_CHECK_ABS_DRIVE(name)) { - drive = toupper(name[0]) - 'A' + 1; + drive = HDtoupper(name[0]) - 'A' + 1; retcwd = HDgetdcwd(drive, cwdpath, MAX_PATH_LEN); HDstrncpy(new_name, &name[2], name_len); } /* end if */ |