From 764ef0515d13e66403dc8a0578ff91b88675ade6 Mon Sep 17 00:00:00 2001 From: Jung-uk Kim Date: Wed, 17 Jun 2015 17:11:44 +0000 Subject: Remove all internal macros and cast various invocations as necessary. https://github.com/acpica/acpica/commit/47d22a7 --- source/components/disassembler/dmopcode.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/components/disassembler/dmopcode.c') diff --git a/source/components/disassembler/dmopcode.c b/source/components/disassembler/dmopcode.c index a312582e595e1..60345fcaa599f 100644 --- a/source/components/disassembler/dmopcode.c +++ b/source/components/disassembler/dmopcode.c @@ -269,10 +269,10 @@ AcpiDmPredefinedDescription ( * Note: NameString is guaranteed to be upper case here. */ LastCharIsDigit = - (isdigit (NameString[3])); /* d */ + (isdigit ((int) NameString[3])); /* d */ LastCharsAreHex = - (isxdigit (NameString[2]) && /* xx */ - isxdigit (NameString[3])); + (isxdigit ((int) NameString[2]) && /* xx */ + isxdigit ((int) NameString[3])); switch (NameString[1]) { -- cgit v1.2.3