From a357faa32772873d6c0a194de18aa1a0b555dc50 Mon Sep 17 00:00:00 2001 From: klu2 Date: Tue, 24 Feb 2009 13:07:54 +0000 Subject: [PATCH] Fix build broken. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7651 6f19259b-4bc3-4df7-8a09-765794883524 --- .../UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c b/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c index 25fcc8293c..6ff6335fda 100644 --- a/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c +++ b/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c @@ -182,7 +182,7 @@ IsDevicePathEndType ( ) { ASSERT (Node != NULL); - return (BOOLEAN) (DevicePathType (Node)) == END_DEVICE_PATH_TYPE); + return (BOOLEAN) (DevicePathType (Node) == END_DEVICE_PATH_TYPE); } /**