diff options
author | David Robillard <d@drobilla.net> | 2023-02-04 21:28:59 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-02-04 21:28:59 -0500 |
commit | cb0d6f6ac0532e16649436fc6225cdc404c1ab02 (patch) | |
tree | d353432d4d3cc3bb90c0e2fb9c996190e7d2c87b | |
parent | 5a9787b4247c6735cc3213944945e8983002edf9 (diff) | |
download | zix-cb0d6f6ac0532e16649436fc6225cdc404c1ab02.tar.gz zix-cb0d6f6ac0532e16649436fc6225cdc404c1ab02.tar.bz2 zix-cb0d6f6ac0532e16649436fc6225cdc404c1ab02.zip |
Fix inconsistent define
-rw-r--r-- | src/allocator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allocator.c b/src/allocator.c index 1da1ec5..6c18804 100644 --- a/src/allocator.c +++ b/src/allocator.c @@ -8,7 +8,7 @@ #include "zix_config.h" #ifdef _WIN32 -# define WIN32_LEAN_AND_MEAN 1 +# define WIN32_LEAN_AND_MEAN # include <malloc.h> # include <windows.h> #endif |