From f8708503cf354afcbb989583746f1e331014c059 Mon Sep 17 00:00:00 2001 From: Hao Wu Date: Mon, 10 Oct 2016 09:35:05 +0800 Subject: [PATCH] BaseTools/GenBootSector: Fix parameter format mismatch in printf functions The return value of GetLastError() API is 32-bit unsigned integer, change the relating format specification from '%x' to '%lx' to keep them matched. Cc: Liming Gao Cc: Yonghong Zhu Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu Reviewed-by: Liming Gao --- BaseTools/Source/C/GenBootSector/GenBootSector.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BaseTools/Source/C/GenBootSector/GenBootSector.c b/BaseTools/Source/C/GenBootSector/GenBootSector.c index c218548a4c..213e1b9722 100644 --- a/BaseTools/Source/C/GenBootSector/GenBootSector.c +++ b/BaseTools/Source/C/GenBootSector/GenBootSector.c @@ -4,7 +4,7 @@ Reading/writing MBR/DBR. If we write MBR to disk, we just update the MBR code and the partition table wouldn't be over written. If we process DBR, we will patch MBR to set first partition active if no active partition exists. -Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
+Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -167,7 +167,7 @@ Return: if (VolumeHandle == INVALID_HANDLE_VALUE) { fprintf ( stderr, - "error E0005: CreateFile failed: Volume = %s, LastError = 0x%x\n", + "error E0005: CreateFile failed: Volume = %s, LastError = 0x%lx\n", VolumeAccessPath, GetLastError () ); @@ -599,7 +599,7 @@ GetPathInfo ( } if (!GetDriveInfo(VolumeLetter, &DriveInfo)) { - fprintf (stderr, "ERROR: GetDriveInfo - 0x%x\n", GetLastError ()); + fprintf (stderr, "ERROR: GetDriveInfo - 0x%lx\n", GetLastError ()); return ErrorPath; } @@ -787,7 +787,7 @@ main ( } else { fprintf ( stderr, - "%s: %s %s: failed - %s (LastError: 0x%x)!\n", + "%s: %s %s: failed - %s (LastError: 0x%lx)!\n", (Status == ErrorNoMbr) ? "WARNING" : "ERROR", (OutputPathInfo.Type != PathFile) ? "Write" : "Read", ProcessMbr ? "MBR" : "DBR",