summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica
diff options
context:
space:
mode:
authornjl <njl@FreeBSD.org>2004-05-25 03:06:37 +0000
committernjl <njl@FreeBSD.org>2004-05-25 03:06:37 +0000
commit0d6049326d5b82458b0b44609a92236a360ace02 (patch)
tree4bcb0ce1a4aafe32e06c95d6134f515654dc4bf3 /sys/contrib/dev/acpica
parent7dda61e34c56846a7ad4da7feef2a91aec7b9c02 (diff)
downloadFreeBSD-src-0d6049326d5b82458b0b44609a92236a360ace02.zip
FreeBSD-src-0d6049326d5b82458b0b44609a92236a360ace02.tar.gz
Remove a warning of a constant that is too large. Change submitted to
vendor.
Diffstat (limited to 'sys/contrib/dev/acpica')
-rw-r--r--sys/contrib/dev/acpica/compiler/aslcompiler.y2
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 99b89ed..18fe3af 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 */
OpenPOWER on IntegriCloud