summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
Diffstat (limited to 'compiler')
-rw-r--r--compiler/Makefile1
-rw-r--r--compiler/aslload.c9
2 files changed, 7 insertions, 3 deletions
diff --git a/compiler/Makefile b/compiler/Makefile
index 740842c02313..597d1ffcbebe 100644
--- a/compiler/Makefile
+++ b/compiler/Makefile
@@ -71,6 +71,7 @@ SRCS= aslcompilerparse.c aslcompilerlex.c aslanalyze.c aslcodegen.c \
../common/adfile.c \
../common/adisasm.c \
../common/adwalk.c \
+ ../common/dmextern.c \
../common/dmrestag.c \
../common/dmtable.c \
../common/dmtbinfo.c \
diff --git a/compiler/aslload.c b/compiler/aslload.c
index 8d06544e7d4d..fab67ccca95c 100644
--- a/compiler/aslload.c
+++ b/compiler/aslload.c
@@ -575,7 +575,9 @@ LdNamespace1Begin (
goto FinishNode;
}
- AslCoreSubsystemError (Op, Status, "Failure from lookup\n", FALSE);
+ AslCoreSubsystemError (Op, Status,
+ "Failure from namespace lookup", FALSE);
+
goto Exit;
}
@@ -718,7 +720,7 @@ LdNamespace1Begin (
else
{
AslCoreSubsystemError (Op, Status,
- "Failure from lookup %s\n", FALSE);
+ "Failure from namespace lookup", FALSE);
goto Exit;
}
}
@@ -885,7 +887,8 @@ LdNamespace2Begin (
return (AE_OK);
}
- AslCoreSubsystemError (Op, Status, "Failure from lookup\n", FALSE);
+ AslCoreSubsystemError (Op, Status,
+ "Failure from namespace lookup", FALSE);
return (AE_OK);
}