compiler/asloptions.c: Make variable j an INT32

Variable j is assigned a signed int value from the call to AcpiGetopt
and is also compared to ACPI_OPT_END which is -1, so it makes sense to
make j an INT32 type rather than a UINT32.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
This commit is contained in:
Colin Ian King 2022-04-26 15:16:35 +00:00
parent bbc7151605
commit bd157a3c71

View File

@ -270,7 +270,7 @@ AslDoOptions (
BOOLEAN IsResponseFile)
{
ACPI_STATUS Status;
UINT32 j;
INT32 j;
/* Get the command line options */