From 191ea7a6262b63cb1d21a8c858cb9f5bca0529f4 Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 16:11:28 +0000 Subject: [PATCH] Generation for Win64 date 2001.12.13.17.23.00; author rmoore1; state Exp; --- source/compiler/asltransform.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/compiler/asltransform.c b/source/compiler/asltransform.c index acf74f516..b1488c18b 100644 --- a/source/compiler/asltransform.c +++ b/source/compiler/asltransform.c @@ -2,7 +2,7 @@ /****************************************************************************** * * Module Name: asltransform - Parse tree transforms - * $Revision: 1.5 $ + * $Revision: 1.6 $ * *****************************************************************************/ @@ -489,7 +489,7 @@ TrDoSwitch ( * Case->Child->Peer is the beginning of the case block */ NewNode = TrCreateValuedLeafNode (NAMESTRING, - (NATIVE_INT) PredicateValuePath); + ACPI_TO_INTEGER (PredicateValuePath)); Predicate = Case->Child; Predicate->Peer = NewNode; @@ -584,7 +584,7 @@ TrDoSwitch ( NewNode->Parent = Gbl_FirstLevelInsertionNode->Parent; NewNode2 = TrCreateValuedLeafNode (NAMESTRING, - (NATIVE_INT) PredicateValueName); + ACPI_TO_INTEGER (PredicateValueName)); NewNode->Child = NewNode2; NewNode2->Peer = TrCreateValuedLeafNode (INTEGER, 0); @@ -607,7 +607,7 @@ TrDoSwitch ( Predicate->Child = NULL; NewNode = TrCreateValuedLeafNode (NAMESTRING, - (NATIVE_INT) PredicateValuePath); + ACPI_TO_INTEGER (PredicateValuePath)); NewNode->Parent = StartNode; Predicate->Peer = NewNode; }