PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ default_rt_error_handler()

void default_rt_error_handler ( const char *  fmt,
va_list  ap 
)

Definition at line 67 of file rt_context.c.

67  {
68 
69  static const char *label = "ERROR: ";
70  char newfmt[1024] = {0};
71  snprintf(newfmt, 1024, "%s%s\n", label, fmt);
72  newfmt[1023] = '\0';
73 
74  vprintf(newfmt, ap);
75 
76  va_end(ap);
77 }
def fmt
Definition: pixval.py:92

References pixval::fmt.

Referenced by rt_install_default_allocators().

Here is the caller graph for this function: