mirror of
https://github.com/acpica/acpica/
synced 2025-01-24 02:12:06 +03:00
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:
parent
bbc7151605
commit
bd157a3c71
@ -270,7 +270,7 @@ AslDoOptions (
|
||||
BOOLEAN IsResponseFile)
|
||||
{
|
||||
ACPI_STATUS Status;
|
||||
UINT32 j;
|
||||
INT32 j;
|
||||
|
||||
|
||||
/* Get the command line options */
|
||||
|
Loading…
Reference in New Issue
Block a user