mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-22 21:30:31 +01:00
gfxstream: fix warning
Fixes:
DrmVirtGpuBlob.cpp:46:21: warning: comparison of integer
expressions of different signedness: ‘uint32_t’
{aka ‘unsigned int’} and ‘int’ [-Wsign-compare]
Reviewed-by: Aaron Ruby <aruby@qnx.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39161>
This commit is contained in:
parent
d1ea08738a
commit
bb17ad3f08
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ struct VirtGpuPciBusInfo {
|
|||
uint8_t function;
|
||||
};
|
||||
|
||||
#define INVALID_DESCRIPTOR -1
|
||||
#define INVALID_DESCRIPTOR 0xFFFFFFFFU
|
||||
|
||||
class VirtGpuResourceMapping;
|
||||
class VirtGpuResource;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue