[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [PATCH 1/2] Fix gcc warning for gptsync memset() usage.
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Subject: Re: [PATCH 1/2] Fix gcc warning for gptsync memset() usage.
- Date: Mon, 9 Feb 2009 20:23:34 -0500
> 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);
> }
Commit it!
- Chris
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]