summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/vc4
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2018-11-20 11:55:00 +0000
committerEric Engestrom <[email protected]>2019-07-19 22:39:38 +0100
commit59c2dd1b8c7582bdb7d9a70cacd86edd9609ccb5 (patch)
tree43d29c482c15e37d695cc539aec9a20c713505b4 /src/gallium/drivers/vc4
parent321d971b084a25c1543d7fe307859dd5bd544c82 (diff)
util: use standard name for sprintf()
Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Eric Anholt <[email protected]> Reviewed-by: Emil Velikov <[email protected]> Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/gallium/drivers/vc4')
-rw-r--r--src/gallium/drivers/vc4/vc4_bufmgr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc4/vc4_bufmgr.c b/src/gallium/drivers/vc4/vc4_bufmgr.c
index 716ca50ea06..cc32862d3fe 100644
--- a/src/gallium/drivers/vc4/vc4_bufmgr.c
+++ b/src/gallium/drivers/vc4/vc4_bufmgr.c
@@ -52,7 +52,7 @@ vc4_bo_cache_free_all(struct vc4_bo_cache *cache);
void
vc4_bo_debug_describe(char* buf, const struct vc4_bo *ptr)
{
- util_sprintf(buf, "vc4_bo<%s,%u,%u>", ptr->name ? ptr->name : "?",
+ sprintf(buf, "vc4_bo<%s,%u,%u>", ptr->name ? ptr->name : "?",
ptr->handle, ptr->size);
}