diff options
author | jkim <jkim@FreeBSD.org> | 2009-10-13 21:27:35 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2009-10-13 21:27:35 +0000 |
commit | ab110240e055d6a52bfada74f67dcfe951464a0a (patch) | |
tree | b5f69a91eb4b1113dce613689bc3dd6bb7b24861 /compiler/aslload.c | |
parent | f8b5be9b377887a6d49ee5417a4189e9a9e4ad44 (diff) | |
download | FreeBSD-src-ab110240e055d6a52bfada74f67dcfe951464a0a.zip FreeBSD-src-ab110240e055d6a52bfada74f67dcfe951464a0a.tar.gz |
Import ACPICA 20091013.
Diffstat (limited to 'compiler/aslload.c')
-rw-r--r-- | compiler/aslload.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/compiler/aslload.c b/compiler/aslload.c index 8d06544..fab67cc 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); } |