diff options
author | José Fonseca <jfonseca@vmware.com> | 2011-03-14 13:41:16 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2011-03-14 14:46:13 +0000 |
commit | f13772134a2666398a77cc9707bb2a72a85ae1b6 (patch) | |
tree | ebd0c9cb14236ffe8d626047323ecd28b0c961e8 /src | |
parent | 8e921b623e060b1f6ea1169c6234c267300dd666 (diff) |
s/WIN32/_WIN32/
The proper macro for Windows operating systems is _WIN32 and not WIN32.
Thanks to Vinson Lee to remind me of that.
Diffstat (limited to 'src')
-rw-r--r-- | src/piglit/gl_wrap.h | 2 | ||||
-rw-r--r-- | src/piglit/glut_wrap.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/piglit/gl_wrap.h b/src/piglit/gl_wrap.h index 872f768b6..eb3de29d9 100644 --- a/src/piglit/gl_wrap.h +++ b/src/piglit/gl_wrap.h @@ -38,7 +38,7 @@ extern "C" { #endif -#ifdef WIN32 +#ifdef _WIN32 #include <windows.h> #endif diff --git a/src/piglit/glut_wrap.h b/src/piglit/glut_wrap.h index 245b6d055..c2ff532a5 100644 --- a/src/piglit/glut_wrap.h +++ b/src/piglit/glut_wrap.h @@ -38,7 +38,7 @@ extern "C" { #endif -#ifdef WIN32 +#ifdef _WIN32 #include <windows.h> #endif |