mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 15:20:17 +01:00
radv: Don't return value in void function
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7866>
This commit is contained in:
parent
3fe62252e4
commit
7f7586704c
1 changed files with 1 additions and 1 deletions
|
|
@ -281,7 +281,7 @@ static void
|
|||
meta_free(void* _device, void *data)
|
||||
{
|
||||
struct radv_device *device = _device;
|
||||
return device->vk.alloc.pfnFree(device->vk.alloc.pUserData, data);
|
||||
device->vk.alloc.pfnFree(device->vk.alloc.pUserData, data);
|
||||
}
|
||||
|
||||
static bool
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue