Skip to content
Snippets Groups Projects
Commit ba336be0 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix warning

parent 54d60d88
No related branches found
No related tags found
No related merge requests found
...@@ -428,7 +428,7 @@ static int gl2psPrintf(const char* fmt, ...) ...@@ -428,7 +428,7 @@ static int gl2psPrintf(const char* fmt, ...)
#if !defined(GL2PS_HAVE_NO_VSNPRINTF) #if !defined(GL2PS_HAVE_NO_VSNPRINTF)
/* Try writing the string to a 1024 byte buffer. If it is too small to fit, /* Try writing the string to a 1024 byte buffer. If it is too small to fit,
keep trying larger sizes until it does. */ keep trying larger sizes until it does. */
size_t bufsize = sizeof(buf); int bufsize = sizeof(buf);
#endif #endif
if(gl2ps->options & GL2PS_COMPRESS){ if(gl2ps->options & GL2PS_COMPRESS){
va_start(args, fmt); va_start(args, fmt);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment