44a778
diff --git a/source/compiler/asllookup.c b/source/compiler/asllookup.c
44a778
index fed35fd..cda5976 100644
44a778
--- a/source/compiler/asllookup.c
44a778
+++ b/source/compiler/asllookup.c
44a778
@@ -122,6 +122,8 @@ LkIsObjectUsed (
44a778
     ASL_METHOD_LOCAL        *MethodLocals;
44a778
     ASL_METHOD_LOCAL        *MethodArgs;
44a778
     UINT32                  i;
44a778
+    ACPI_NAME_UNION         NodeName;
44a778
+    ACPI_NAME_UNION         NextName;
44a778
 
44a778
 
44a778
     if (Node->Type == ACPI_TYPE_METHOD)
44a778
@@ -175,7 +177,8 @@ LkIsObjectUsed (
44a778
                  * We ignore the predefined methods since often, not
44a778
                  * all arguments are needed or used.
44a778
                  */
44a778
-                if ((Node->Name.Ascii[0] != '_') &&
44a778
+                ACPI_MOVE_32_TO_32(&NodeName.Ascii, Node->Name.Ascii);
44a778
+                if ((NodeName.Ascii[0] != '_') &&
44a778
                     (!(MethodArgs[i].Flags & ASL_ARG_REFERENCED)))
44a778
                 {
44a778
                     sprintf (MsgBuffer, "Arg%u", i);
44a778
@@ -228,8 +231,10 @@ LkIsObjectUsed (
44a778
              * Issue a remark even if it is a reserved name (starts
44a778
              * with an underscore).
44a778
              */
44a778
+            ACPI_MOVE_32_TO_32(&NodeName.Ascii, Node->Name.Ascii);
44a778
+            ACPI_MOVE_32_TO_32(&NextName.Ascii, Next->Name.Ascii);
44a778
             sprintf (MsgBuffer, "Name [%4.4s] is within a method [%4.4s]",
44a778
-                Node->Name.Ascii, Next->Name.Ascii);
44a778
+                NodeName.Ascii, NextName.Ascii);
44a778
             AslError (ASL_REMARK, ASL_MSG_NOT_REFERENCED,
44a778
                 LkGetNameOp (Node->Op), MsgBuffer);
44a778
             return (AE_OK);