mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 17:58:26 +02:00
mesa/gbm: Resolve GCC sign-compare warning.
mesa/src/gbm/main/backend.c: In function 'find_backend':
mesa/src/gbm/main/backend.c:70:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (i = 0; i < ARRAY_SIZE(backends); ++i) {
^
mesa/src/gbm/main/backend.c: In function '_gbm_create_device':
mesa/src/gbm/main/backend.c:95:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (i = 0; i < ARRAY_SIZE(backends) && dev == NULL; ++i) {
^
Signed-off-by: Rhys Kidd <rhyskidd@gmail.com>
Reviewed-by: Thomas Helland <thomashelland90@gmail.com>
This commit is contained in:
parent
f5bb5b957a
commit
1d8c694928
1 changed files with 2 additions and 2 deletions
|
|
@ -65,7 +65,7 @@ static const struct backend_desc *
|
|||
find_backend(const char *name)
|
||||
{
|
||||
const struct backend_desc *backend = NULL;
|
||||
int i;
|
||||
unsigned i;
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(backends); ++i) {
|
||||
if (strcmp(backends[i].name, name) == 0) {
|
||||
|
|
@ -82,7 +82,7 @@ _gbm_create_device(int fd)
|
|||
{
|
||||
const struct gbm_backend *backend = NULL;
|
||||
struct gbm_device *dev = NULL;
|
||||
int i;
|
||||
unsigned i;
|
||||
const char *b;
|
||||
|
||||
b = getenv("GBM_BACKEND");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue