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:
Gurchetan Singh 2026-01-05 08:10:26 -08:00 committed by Marge Bot
parent d1ea08738a
commit bb17ad3f08

View file

@ -129,7 +129,7 @@ struct VirtGpuPciBusInfo {
uint8_t function;
};
#define INVALID_DESCRIPTOR -1
#define INVALID_DESCRIPTOR 0xFFFFFFFFU
class VirtGpuResourceMapping;
class VirtGpuResource;