From 844ae34a15f0967a06af14c321946da9b5408160 Mon Sep 17 00:00:00 2001 From: Matti Hamalainen Date: Thu, 13 May 2021 18:53:41 +0300 Subject: [PATCH] aux/trace: add missing return value to trace output trace_screen_resource_bind_backing() was missing printing of the boolean return value. Add it. Reviewed-By: Mike Blumenkrantz Part-of: --- src/gallium/auxiliary/driver_trace/tr_screen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/auxiliary/driver_trace/tr_screen.c b/src/gallium/auxiliary/driver_trace/tr_screen.c index 2b8a1addf44..37a6682056a 100644 --- a/src/gallium/auxiliary/driver_trace/tr_screen.c +++ b/src/gallium/auxiliary/driver_trace/tr_screen.c @@ -475,6 +475,8 @@ trace_screen_resource_bind_backing(struct pipe_screen *_screen, result = screen->resource_bind_backing(screen, resource, pmem, offset); + trace_dump_ret(bool, result); + trace_dump_call_end(); return result;