X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=progs%2Fdemos%2FLorenz%2Florenz.c;h=6a816b2f16bab15fa387bceab3ad29cd7f3c7882;hb=f0ba4e97608a444ae0a94e2408ed1a647ee38672;hp=98361bcb048a2299ee4723733bada0c6490ef508;hpb=1e778f9ed7ff8009e4555ef4043509b0c9f01ebd;p=freeglut diff --git a/progs/demos/Lorenz/lorenz.c b/progs/demos/Lorenz/lorenz.c index 98361bc..6a816b2 100644 --- a/progs/demos/Lorenz/lorenz.c +++ b/progs/demos/Lorenz/lorenz.c @@ -33,7 +33,7 @@ #include #include #include -#ifdef WIN32 +#ifdef _MSC_VER /* DUMP MEMORY LEAKS */ #include #endif @@ -249,7 +249,11 @@ void bitmapPrintf (const char *fmt, ...) va_list args; va_start(args, fmt); +#if defined(WIN32) && !defined(__CYGWIN__) + (void) _vsnprintf (buf, sizeof(buf), fmt, args); +#else (void) vsnprintf (buf, sizeof(buf), fmt, args); +#endif va_end(args); glutBitmapString ( GLUT_BITMAP_HELVETICA_12, (unsigned char*)buf ) ; } @@ -365,7 +369,7 @@ int main ( int argc, char *argv[] ) /* Enter the GLUT main loop */ glutMainLoop () ; -#ifdef WIN32 +#ifdef _MSC_VER /* DUMP MEMORY LEAK INFORMATION */ _CrtDumpMemoryLeaks () ; #endif