[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH 1/2] Fix gcc warning for gptsync memset() usage.
- From: David Cantrell <dcantrell redhat com>
- To: anaconda-devel-list redhat com
- Cc:
- Subject: [PATCH 1/2] Fix gcc warning for gptsync memset() usage.
- Date: Mon, 9 Feb 2009 15:20:33 -1000
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]