Code

use g_vsnprintf() instead of vsnprintf() to avoid platform problems
authorishmal <ishmal@users.sourceforge.net>
Mon, 12 Mar 2007 19:38:17 +0000 (19:38 +0000)
committerishmal <ishmal@users.sourceforge.net>
Mon, 12 Mar 2007 19:38:17 +0000 (19:38 +0000)
src/extension/internal/pov-out.cpp

index 14a27914e43bd66ef607adf80d11ce2e92db3087..54d49a79a35e546daa656a3e49c6d7ec7e3fa180 100644 (file)
@@ -124,11 +124,7 @@ void PovOutput::out(char *fmt, ...)
 {
     va_list args;
     va_start(args, fmt);
-#if !defined(__GNUC__) || defined(__MINGW32__)
-    vsnprintf(fmtbuf, 4096, fmt, args);
-#else
-    vsprintf(fmtbuf, 4096, fmt, args);
-#endif
+    g_vsnprintf(fmtbuf, 4096, fmt, args);
     va_end(args);
     outbuf.append(fmtbuf);
 }