PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ default_rt_warning_handler()

void default_rt_warning_handler ( const char *  fmt,
va_list  ap 
)

Definition at line 80 of file rt_context.c.

80  {
81 
82  static const char *label = "WARNING: ";
83  char newfmt[1024] = {0};
84  snprintf(newfmt, 1024, "%s%s\n", label, fmt);
85  newfmt[1023] = '\0';
86 
87  vprintf(newfmt, ap);
88 
89  va_end(ap);
90 }
def fmt
Definition: pixval.py:92

References pixval::fmt.

Referenced by main(), and rt_install_default_allocators().

Here is the caller graph for this function: