From 3b8832aa8cc99d99ad264cad8e372d32a9061b74 Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 15:40:34 +0000 Subject: [PATCH] fix a few format string issues date 2001.10.17.20.38.00; author agrover; state Exp; --- source/compiler/aslanalyze.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/compiler/aslanalyze.c b/source/compiler/aslanalyze.c index 8779f0cd1..60a885fb4 100644 --- a/source/compiler/aslanalyze.c +++ b/source/compiler/aslanalyze.c @@ -2,7 +2,7 @@ /****************************************************************************** * * Module Name: aslanalyze.c - check for semantic errors - * $Revision: 1.46 $ + * $Revision: 1.47 $ * *****************************************************************************/ @@ -698,7 +698,7 @@ AnMethodAnalysisWalkBegin ( { /* Probably was an error in the method declaration, no additional error here */ - ACPI_DEBUG_PRINT ((ACPI_DB_WARN, "%X, No parent method\n", Node)); + ACPI_DEBUG_PRINT ((ACPI_DB_WARN, "%p, No parent method\n", Node)); return (AE_ERROR); } @@ -739,7 +739,7 @@ AnMethodAnalysisWalkBegin ( { /* Probably was an error in the method declaration, no additional error here */ - ACPI_DEBUG_PRINT ((ACPI_DB_WARN, "%X, No parent method\n", Node)); + ACPI_DEBUG_PRINT ((ACPI_DB_WARN, "%p, No parent method\n", Node)); return (AE_ERROR); } @@ -782,7 +782,7 @@ AnMethodAnalysisWalkBegin ( { /* Probably was an error in the method declaration, no additional error here */ - ACPI_DEBUG_PRINT ((ACPI_DB_WARN, "%X, No parent method\n", Node)); + ACPI_DEBUG_PRINT ((ACPI_DB_WARN, "%p, No parent method\n", Node)); return (AE_ERROR); }