mirror of https://github.com/acidanthera/audk.git
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:
parent
276a49b699
commit
5fc5555520
|
@ -153,7 +153,7 @@ IsDevicePathEndType (
|
|||
)
|
||||
{
|
||||
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);
|
||||
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);
|
||||
return (IsDevicePathEndType (Node) && DevicePathSubType(Node) == END_INSTANCE_DEVICE_PATH_SUBTYPE);
|
||||
return (BOOLEAN) (IsDevicePathEndType (Node) && DevicePathSubType(Node) == END_INSTANCE_DEVICE_PATH_SUBTYPE);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue