diff options
author | Bernd Wachter <bwachter-tmw@lart.info> | 2011-10-24 20:28:15 +0300 |
---|---|---|
committer | Bernd Wachter <bwachter-tmw@lart.info> | 2011-10-25 13:36:33 +0300 |
commit | 8954a7ca0f70bbf167c9119d26c7bca8407e8da6 (patch) | |
tree | 5c57e4ee47518bb21ce2f0dc10d5fac963875af7 /libs/enet/unix.c | |
parent | 9c5791d3e3b413d8b703f1530f67de8936a3434c (diff) | |
download | mana-8954a7ca0f70bbf167c9119d26c7bca8407e8da6.tar.gz mana-8954a7ca0f70bbf167c9119d26c7bca8407e8da6.tar.bz2 mana-8954a7ca0f70bbf167c9119d26c7bca8407e8da6.tar.xz mana-8954a7ca0f70bbf167c9119d26c7bca8407e8da6.zip |
Change the wrong, but mostly supported WIN32 macro to the correct _WIN32, enforced by -std=c++0x
Reviewed-by: Thorbjørn Lindeijer
Diffstat (limited to 'libs/enet/unix.c')
-rw-r--r-- | libs/enet/unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/enet/unix.c b/libs/enet/unix.c index 69715413..75c78bc8 100644 --- a/libs/enet/unix.c +++ b/libs/enet/unix.c @@ -2,7 +2,7 @@ @file unix.c @brief ENet Unix system specific functions */ -#ifndef WIN32 +#ifndef _WIN32 #include <sys/types.h> #include <sys/socket.h> |