diff options
Diffstat (limited to 'source/compiler/prparser.y')
-rw-r--r-- | source/compiler/prparser.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/compiler/prparser.y b/source/compiler/prparser.y index 2ad79e45964c..d24a5bbee04f 100644 --- a/source/compiler/prparser.y +++ b/source/compiler/prparser.y @@ -290,11 +290,11 @@ Expression /* Default base for a non-prefixed integer is 10 */ - | EXPOP_NUMBER { AcpiUtStrtoul64 (PrParsertext, ACPI_STRTOUL_64BIT, &$$);} + | EXPOP_NUMBER { AcpiUtStrtoul64 (PrParsertext, &$$);} /* Standard hex number (0x1234) */ - | EXPOP_HEX_NUMBER { AcpiUtStrtoul64 (PrParsertext, (ACPI_STRTOUL_BASE16 | ACPI_STRTOUL_64BIT), &$$);} + | EXPOP_HEX_NUMBER { AcpiUtStrtoul64 (PrParsertext, &$$);} ; %% |