Skip to content

Commit

Permalink
NetworkPkg/Dhcp6Dxe: Fix extraneous parentheses
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
mikebeaton committed Sep 20, 2024
1 parent a6a5da6 commit f280f2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NetworkPkg/Dhcp6Dxe/Dhcp6Utility.c
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ Dhcp6AppendETOption (
return EFI_INVALID_PARAMETER;
}

if ((Elapsed == NULL)) {
if (Elapsed == NULL) {
return EFI_INVALID_PARAMETER;
}

Expand Down

0 comments on commit f280f2f

Please sign in to comment.