Skip to content

Commit

Permalink
Correct number of args to Windows HDunsetenv macro (HDFGroup#939)
Browse files Browse the repository at this point in the history
* Correct number of args to Windows HDunsetenv macro

* Correct format
  • Loading branch information
byrnHDF committed Aug 19, 2021
1 parent c019db6 commit c88c0f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/H5win32defs.h
Expand Up @@ -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
Expand Down

0 comments on commit c88c0f2

Please sign in to comment.