diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-02-24 13:07:54 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-02-24 13:07:54 +0000 |
commit | a357faa32772873d6c0a194de18aa1a0b555dc50 (patch) | |
tree | d67b5303b5fd31103ca7e68b1619730f5713a68d /MdePkg/Library/UefiDevicePathLibDevicePathProtocol | |
parent | 204d0e01f64bc0136d3b51d689ab0cc1a09b27bf (diff) | |
download | edk2-platforms-a357faa32772873d6c0a194de18aa1a0b555dc50.tar.xz |
Fix build broken.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7651 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/UefiDevicePathLibDevicePathProtocol')
-rw-r--r-- | MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
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);
}
/**
|