diff options
Diffstat (limited to 'parser/psargs.c')
-rw-r--r-- | parser/psargs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parser/psargs.c b/parser/psargs.c index 60d4a835b1b7..78127e5d4d33 100644 --- a/parser/psargs.c +++ b/parser/psargs.c @@ -8,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp. * All rights reserved. * * 2. License @@ -514,7 +514,7 @@ AcpiPsGetNextSimpleArg ( /* Get 1 byte from the AML stream */ Opcode = AML_BYTE_OP; - Arg->Common.Value.Integer = (ACPI_INTEGER) *Aml; + Arg->Common.Value.Integer = (UINT64) *Aml; Length = 1; break; |