diff options
Diffstat (limited to 'libopenjpeg/event.c')
| -rw-r--r-- | libopenjpeg/event.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libopenjpeg/event.c b/libopenjpeg/event.c index 291ff585..953a9973 100644 --- a/libopenjpeg/event.c +++ b/libopenjpeg/event.c @@ -30,7 +30,7 @@ Utility functions ==========================================================*/ -#if !defined(_MSC_VER) && !defined(__MINGW32__) +#ifndef _WIN32 static char* i2a(unsigned i, char *a, unsigned r) { if (i/r > 0) a = i2a(i/r,a,r); @@ -57,7 +57,7 @@ _itoa(int i, char *a, int r) { return a; } -#endif /* !WIN32 */ +#endif /* !_WIN32 */ /* ----------------------------------------------------------------------- */ |
