diff options
author | Eric Engestrom <[email protected]> | 2018-11-20 11:55:55 +0000 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-07-19 22:39:38 +0100 |
commit | 00e23cd96998deae429508efa10545be13420379 (patch) | |
tree | 2b96e92a623dd6092a762882015c992abcd8bfd6 /src/gallium/auxiliary/util/u_async_debug.c | |
parent | 59c2dd1b8c7582bdb7d9a70cacd86edd9609ccb5 (diff) |
util: use standard name for vasprintf()
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/auxiliary/util/u_async_debug.c')
-rw-r--r-- | src/gallium/auxiliary/util/u_async_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_async_debug.c b/src/gallium/auxiliary/util/u_async_debug.c index 04faa6850e7..d7aefbfe46b 100644 --- a/src/gallium/auxiliary/util/u_async_debug.c +++ b/src/gallium/auxiliary/util/u_async_debug.c @@ -40,7 +40,7 @@ u_async_debug_message(void *data, unsigned *id, enum pipe_debug_type type, char *text; int r; - r = util_vasprintf(&text, fmt, args); + r = vasprintf(&text, fmt, args); if (r < 0) return; |