]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseMemoryLibOptDxe/CompareMemWrapper.c
MdePkg: Apply uncrustify changes
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibOptDxe / CompareMemWrapper.c
index 6c539a685ea017bdbbb48ba96b8627269c0edb74..5b65a1d264cb50376237253fc8e3a2b8efa40a19 100644 (file)
@@ -48,9 +48,10 @@ CompareMem (
   IN UINTN       Length\r
   )\r
 {\r
-  if (Length == 0 || DestinationBuffer == SourceBuffer) {\r
+  if ((Length == 0) || (DestinationBuffer == SourceBuffer)) {\r
     return 0;\r
   }\r
+\r
   ASSERT (DestinationBuffer != NULL);\r
   ASSERT (SourceBuffer != NULL);\r
   ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));\r