PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ 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}

Referenced by rt_install_default_allocators().

Here is the caller graph for this function: