diff options
author | Nate Lawson <njl@FreeBSD.org> | 2004-05-25 03:06:37 +0000 |
---|---|---|
committer | Nate Lawson <njl@FreeBSD.org> | 2004-05-25 03:06:37 +0000 |
commit | 0d224e7f8870b6817a5c08c49aecc84c679c16ec (patch) | |
tree | 4bcb0ce1a4aafe32e06c95d6134f515654dc4bf3 | |
parent | a5a81f7c89bfa1232e53c5594bfb6a005e4542ce (diff) | |
download | src-test2-0d224e7f8870b6817a5c08c49aecc84c679c16ec.tar.gz src-test2-0d224e7f8870b6817a5c08c49aecc84c679c16ec.zip |
Notes
-rw-r--r-- | sys/contrib/dev/acpica/compiler/aslcompiler.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/contrib/dev/acpica/compiler/aslcompiler.y b/sys/contrib/dev/acpica/compiler/aslcompiler.y index 99b89ed5e991..18fe3af92800 100644 --- a/sys/contrib/dev/acpica/compiler/aslcompiler.y +++ b/sys/contrib/dev/acpica/compiler/aslcompiler.y @@ -2252,7 +2252,7 @@ QWordConstExpr ConstExprTerm : PARSEOP_ZERO {$$ = TrCreateValuedLeafNode (PARSEOP_ZERO, 0);} | PARSEOP_ONE {$$ = TrCreateValuedLeafNode (PARSEOP_ONE, 1);} - | PARSEOP_ONES {$$ = TrCreateValuedLeafNode (PARSEOP_ONES, 0xFFFFFFFFFFFFFFFF);} + | PARSEOP_ONES {$$ = TrCreateValuedLeafNode (PARSEOP_ONES, 0xFFFFFFFFFFFFFFFFull);} ; /* OptionalCount must appear before ByteList or an incorrect reduction will result */ |