tgsi: make dumping work on non-debug builds

This commit is contained in:
Marek Olšák
2010-05-04 22:43:49 +02:00
parent 0ad541a684
commit a8bb495629

View File

@@ -56,7 +56,7 @@ dump_ctx_printf(struct dump_ctx *ctx, const char *format, ...)
va_list ap;
(void)ctx;
va_start(ap, format);
debug_vprintf(format, ap);
_debug_vprintf(format, ap);
va_end(ap);
}