| 121 | }; |
| 122 | |
| 123 | static void PDALGTIFErrorFunction(GTIF* gt, int level, const char* msg, ...) |
| 124 | { |
| 125 | va_list list; |
| 126 | (void)gt; |
| 127 | |
| 128 | va_start(list, msg); |
| 129 | if( level == LIBGEOTIFF_WARNING ) |
| 130 | fprintf(stderr, "GEOTIFF Warning: "); |
| 131 | else if( level == LIBGEOTIFF_ERROR ) |
| 132 | fprintf(stderr, "GEOTIFF Error: "); |
| 133 | vfprintf(stderr, msg, list); |
| 134 | fprintf(stderr, "\n"); |
| 135 | va_end(list); |
| 136 | } |
| 137 | |
| 138 | } // unnamed namespace |
| 139 |
nothing calls this directly
no outgoing calls
no test coverage detected