mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
vkdebug: fix type compilation warning
Since VkMemoryHeapFlagBits is an enum, while VkMemoryHeapFlags is the expected alias of VkFlags. This issue is spotted by warning of gcc 13.1.1 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4547>
This commit is contained in:
parent
020fd3d14d
commit
6258914b1d
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ static const struct
|
|||
*
|
||||
* Since: 1.18
|
||||
*/
|
||||
FLAGS_TO_STRING(memory_heap, VkMemoryHeapFlagBits);
|
||||
FLAGS_TO_STRING(memory_heap, VkMemoryHeapFlags);
|
||||
|
||||
static const struct
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue