Changeset 108030 in vbox
- Timestamp:
- Feb 3, 2025 4:01:02 PM (3 weeks ago)
- svn:sync-xref-src-repo-rev:
- 167303
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/acpi/acpi-compiler.cpp
r108029 r108030 700 700 701 701 /* Process any required arguments. */ 702 for (uint 32_t i = 0; i < pAslKeyword->cArgsReq; i++)702 for (uint8_t i = 0; i < pAslKeyword->cArgsReq; i++) 703 703 { 704 704 rc = rtAcpiTblAslParseArgument(pThis, pAslKeyword->pszOpc, i, pAslKeyword->aenmTypes[i], &pAstNd->aArgs[i]); … … 707 707 708 708 /* There must be a "," between required arguments, not counting the last required argument because it can be closed with ")". */ 709 if (i < pAslKeyword->cArgsReq - 1)709 if (i < (uint8_t)(pAslKeyword->cArgsReq - 1)) 710 710 RTACPIASL_PARSE_PUNCTUATOR(RTACPIASLTERMINAL_PUNCTUATOR_COMMA, ','); 711 711 }
Note:
See TracChangeset
for help on using the changeset viewer.