summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e900b46)
raw | patch | inline | side by side (parent: e900b46)
author | ishmal <ishmal@users.sourceforge.net> | |
Mon, 12 Mar 2007 19:38:17 +0000 (19:38 +0000) | ||
committer | ishmal <ishmal@users.sourceforge.net> | |
Mon, 12 Mar 2007 19:38:17 +0000 (19:38 +0000) |
src/extension/internal/pov-out.cpp | patch | blob | history |
index 14a27914e43bd66ef607adf80d11ce2e92db3087..54d49a79a35e546daa656a3e49c6d7ec7e3fa180 100644 (file)
{
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);
}