OvmfPkg: fix conversion specifiers in DEBUG format strings
Cc: Scott Duplichan <scott@notabs.org> Cc: Jordan Justen <jordan.l.justen@intel.com> Reported-by: Scott Duplichan <scott@notabs.org> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Build-tested-by: Scott Duplichan <scott@notabs.org> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18095 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -255,8 +255,8 @@ ReadNvVarsFile (
|
||||
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
"FsAccess.c: Read %d bytes from NV Variables file\n",
|
||||
FileSize
|
||||
"FsAccess.c: Read %Lu bytes from NV Variables file\n",
|
||||
(UINT64)FileSize
|
||||
));
|
||||
|
||||
Status = SerializeVariablesNewInstanceFromBuffer (
|
||||
@@ -369,8 +369,8 @@ LoadNvVarsFromFs (
|
||||
|
||||
DEBUG ((
|
||||
EFI_D_INFO,
|
||||
"FsAccess.c: Read NV Variables file (size=%d)\n",
|
||||
Size
|
||||
"FsAccess.c: Read NV Variables file (size=%Lu)\n",
|
||||
(UINT64)Size
|
||||
));
|
||||
|
||||
return Status;
|
||||
|
Reference in New Issue
Block a user