NetworkPkg/Dhcp6Dxe: Fix extraneous parentheses

Without this change we get:

  error: equality comparison with extraneous parentheses

when building with -D NETWORK_IP6_ENABLE on XCODE5.

Signed-off-by: Mike Beaton <mjsbeaton@gmail.com>
This commit is contained in:
Mike Beaton 2024-04-06 23:23:40 +01:00 committed by mergify[bot]
parent e548e1cd73
commit 8b295e0aad
1 changed files with 1 additions and 1 deletions

View File

@ -1001,7 +1001,7 @@ Dhcp6AppendETOption (
return EFI_INVALID_PARAMETER;
}
if ((Elapsed == NULL)) {
if (Elapsed == NULL) {
return EFI_INVALID_PARAMETER;
}