[edk2-devel] [PATCH] BaseTools: Use only 1 semicolon at end of statement

Elyes Haouas posted 1 patch 8 months, 1 week ago
Failed in applying to current master (apply log)
BaseTools/Source/C/DevicePath/DevicePathUtilities.c | 2 +-
BaseTools/Source/C/GenFw/GenFw.c                    | 2 +-
BaseTools/Source/C/LzmaCompress/Sdk/C/LzmaDec.c     | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
[edk2-devel] [PATCH] BaseTools: Use only 1 semicolon at end of statement
Posted by Elyes Haouas 8 months, 1 week ago
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
---
 BaseTools/Source/C/DevicePath/DevicePathUtilities.c | 2 +-
 BaseTools/Source/C/GenFw/GenFw.c                    | 2 +-
 BaseTools/Source/C/LzmaCompress/Sdk/C/LzmaDec.c     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/BaseTools/Source/C/DevicePath/DevicePathUtilities.c b/BaseTools/Source/C/DevicePath/DevicePathUtilities.c
index 49078aac8c..c4f559517b 100644
--- a/BaseTools/Source/C/DevicePath/DevicePathUtilities.c
+++ b/BaseTools/Source/C/DevicePath/DevicePathUtilities.c
@@ -594,7 +594,7 @@ UefiDevicePathLibAppendDevicePathInstance (
   NewDevicePath = AllocatePool (SrcSize + InstanceSize);
   if (NewDevicePath != NULL) {
 
-    TempDevicePath = memcpy (NewDevicePath, DevicePath, SrcSize);;
+    TempDevicePath = memcpy (NewDevicePath, DevicePath, SrcSize);
 
     while (!IsDevicePathEnd (TempDevicePath)) {
       TempDevicePath = NextDevicePathNode (TempDevicePath);
diff --git a/BaseTools/Source/C/GenFw/GenFw.c b/BaseTools/Source/C/GenFw/GenFw.c
index 0289c8ef8a..9e5e5a49a3 100644
--- a/BaseTools/Source/C/GenFw/GenFw.c
+++ b/BaseTools/Source/C/GenFw/GenFw.c
@@ -207,7 +207,7 @@ Returns:
                         It can't be combined with other action options\n\
                         except for -o, -r option. It is a action option.\n\
                         If it is combined with other action options, the later\n\
-                        input action option will override the previous one.\n");;
+                        input action option will override the previous one.\n");
   fprintf (stdout, "  -l, --stripped        Strip off the relocation info from PE or TE image.\n\
                         It can't be combined with other action options\n\
                         except for -o, -r option. It is a action option.\n\
diff --git a/BaseTools/Source/C/LzmaCompress/Sdk/C/LzmaDec.c b/BaseTools/Source/C/LzmaCompress/Sdk/C/LzmaDec.c
index 4d1576419f..97340482be 100644
--- a/BaseTools/Source/C/LzmaCompress/Sdk/C/LzmaDec.c
+++ b/BaseTools/Source/C/LzmaCompress/Sdk/C/LzmaDec.c
@@ -1138,7 +1138,7 @@ SRes LzmaDec_Allocate(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAll
     UInt32 dictSize = propNew.dicSize;
     SizeT mask = ((UInt32)1 << 12) - 1;
          if (dictSize >= ((UInt32)1 << 30)) mask = ((UInt32)1 << 22) - 1;
-    else if (dictSize >= ((UInt32)1 << 22)) mask = ((UInt32)1 << 20) - 1;;
+    else if (dictSize >= ((UInt32)1 << 22)) mask = ((UInt32)1 << 20) - 1;
     dicBufSize = ((SizeT)dictSize + mask) & ~mask;
     if (dicBufSize < dictSize)
       dicBufSize = dictSize;
-- 
2.40.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#107934): https://edk2.groups.io/g/devel/message/107934
Mute This Topic: https://groups.io/mt/100880849/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-