diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2021-08-19 18:07:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-19 18:07:49 (GMT) |
commit | c88c0f2008a0a431ee64ae7a36ed29f927ba3e13 (patch) | |
tree | 41451fa8a1e53b0d71b9d8e968753c4942a28500 /src/H5win32defs.h | |
parent | c019db60eecc173e1d3b118c9aeb7885865fa50f (diff) | |
download | hdf5-c88c0f2008a0a431ee64ae7a36ed29f927ba3e13.zip hdf5-c88c0f2008a0a431ee64ae7a36ed29f927ba3e13.tar.gz hdf5-c88c0f2008a0a431ee64ae7a36ed29f927ba3e13.tar.bz2 |
Correct number of args to Windows HDunsetenv macro (#939)
* Correct number of args to Windows HDunsetenv macro
* Correct format
Diffstat (limited to 'src/H5win32defs.h')
-rw-r--r-- | src/H5win32defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5win32defs.h b/src/H5win32defs.h index 030b65b..44cf50c 100644 --- a/src/H5win32defs.h +++ b/src/H5win32defs.h @@ -80,7 +80,7 @@ struct timezone { #define HDstrtok_r(X, Y, Z) strtok_s(X, Y, Z) #define HDtzset() _tzset() #define HDunlink(S) _unlink(S) -#define HDunsetenv(N, V, O) Wsetenv(N, "", 1) +#define HDunsetenv(N) Wsetenv(N, "", 1) #define HDwrite(F, M, Z) _write(F, M, Z) #ifndef H5_HAVE_MINGW |