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

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

Referenced by rt_install_default_allocators().

Here is the caller graph for this function: