[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

[PATCH 1/2] Fix gcc warning for gptsync memset() usage.



Un-transpose the transposed arguments.
---
 gptsync/gptsync.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/gptsync/gptsync.c b/gptsync/gptsync.c
index 7074bb8..3ad26bf 100644
--- a/gptsync/gptsync.c
+++ b/gptsync/gptsync.c
@@ -145,7 +145,7 @@ static UINTN write_mbr(VOID)
     }
     if (!have_bootcode) {
         // no boot code found in the MBR, add the syslinux MBR code
-        SetMem(sector, MBR_BOOTCODE_SIZE, 0);
+        SetMem(sector, 0, MBR_BOOTCODE_SIZE);
         CopyMem(sector, syslinux_mbr, SYSLINUX_MBR_SIZE);
     }
     
-- 
1.6.1.2


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]