[warnings] fix compare integers of different signs

This commit is contained in:
akallabeth
2024-09-03 14:38:45 +02:00
parent cbeded839d
commit baa70d1ab6
21 changed files with 83 additions and 59 deletions

View File

@@ -366,7 +366,7 @@ static rdpPrinter** printer_cups_enum_printers(rdpPrinterDriver* driver)
if (!printers)
return NULL;
for (size_t i = 0; i < num_dests; i++)
for (size_t i = 0; i < (size_t)num_dests; i++)
{
const cups_dest_t* dest = &dests[i];
if (dest->instance == NULL)