diff options
author | Matthew Gregan <[email protected]> | 2017-10-10 13:48:43 +1300 |
---|---|---|
committer | Matthew Gregan <[email protected]> | 2017-10-10 13:48:43 +1300 |
commit | 57eae3619cc020cb5d1b38813b1bbef4e2775709 (patch) | |
tree | fe446bce8c31735ca9a0aa2e967d5ffb6dca62c6 /src/cubeb_utils.h | |
parent | 871456d099f8f42da695ad31e56c2037596391ed (diff) | |
download | cubeb-57eae3619cc020cb5d1b38813b1bbef4e2775709.tar.gz cubeb-57eae3619cc020cb5d1b38813b1bbef4e2775709.zip |
Use _WIN32 rather than WIN32 in cubeb_utils.h.
Diffstat (limited to 'src/cubeb_utils.h')
-rw-r--r-- | src/cubeb_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cubeb_utils.h b/src/cubeb_utils.h index 0966560..dc08fec 100644 --- a/src/cubeb_utils.h +++ b/src/cubeb_utils.h @@ -17,7 +17,7 @@ #include <assert.h> #include <mutex> #include <type_traits> -#if defined(WIN32) +#if defined(_WIN32) #include "cubeb_utils_win.h" #else #include "cubeb_utils_unix.h" |