Fix ICC build break

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7472 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qhuang8 2009-02-06 09:31:40 +00:00
parent 276a49b699
commit 5fc5555520
1 changed files with 3 additions and 3 deletions

View File

@ -153,7 +153,7 @@ IsDevicePathEndType (
) )
{ {
ASSERT (Node != NULL); ASSERT (Node != NULL);
return ((DevicePathType (Node) & 0x7f) == END_DEVICE_PATH_TYPE); return (BOOLEAN) ((DevicePathType (Node) & 0x7f) == END_DEVICE_PATH_TYPE);
} }
/** /**
@ -176,7 +176,7 @@ IsDevicePathEnd (
) )
{ {
ASSERT (Node != NULL); ASSERT (Node != NULL);
return (IsDevicePathEndType (Node) && DevicePathSubType(Node) == END_ENTIRE_DEVICE_PATH_SUBTYPE); return (BOOLEAN) (IsDevicePathEndType (Node) && DevicePathSubType(Node) == END_ENTIRE_DEVICE_PATH_SUBTYPE);
} }
/** /**
@ -199,7 +199,7 @@ IsDevicePathEndInstance (
) )
{ {
ASSERT (Node != NULL); ASSERT (Node != NULL);
return (IsDevicePathEndType (Node) && DevicePathSubType(Node) == END_INSTANCE_DEVICE_PATH_SUBTYPE); return (BOOLEAN) (IsDevicePathEndType (Node) && DevicePathSubType(Node) == END_INSTANCE_DEVICE_PATH_SUBTYPE);
} }
/** /**