diff options
author | Eric Engestrom <[email protected]> | 2018-11-20 11:55:00 +0000 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-07-19 22:39:38 +0100 |
commit | 59c2dd1b8c7582bdb7d9a70cacd86edd9609ccb5 (patch) | |
tree | 43d29c482c15e37d695cc539aec9a20c713505b4 /src/gallium/winsys | |
parent | 321d971b084a25c1543d7fe307859dd5bd544c82 (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/winsys')
-rw-r--r-- | src/gallium/winsys/svga/drm/vmw_msg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/svga/drm/vmw_msg.c b/src/gallium/winsys/svga/drm/vmw_msg.c index 3e8ed2a0fb5..2a2d6a61297 100644 --- a/src/gallium/winsys/svga/drm/vmw_msg.c +++ b/src/gallium/winsys/svga/drm/vmw_msg.c @@ -442,7 +442,7 @@ vmw_svga_winsys_host_log(struct svga_winsys_screen *sws, const char *log) return; } - util_sprintf(msg, "log %s", log); + sprintf(msg, "log %s", log); if (!(ret = vmw_open_channel(&channel, RPCI_PROTOCOL_NUM))) { ret = vmw_send_msg(&channel, msg); |