summaryrefslogtreecommitdiffstats
path: root/OvmfPkg/XenPvBlkDxe
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2016-09-09 22:32:15 +0200
committerLaszlo Ersek <lersek@redhat.com>2016-09-12 13:12:32 +0200
commit8c0b0b34f7875571ee9d3a2a1a28484cef36d969 (patch)
treefdaf5b1a477f734a4efdfd50be22a31053c6d6d0 /OvmfPkg/XenPvBlkDxe
parent3e92a99747aa7027c4b375a75e23e9f2dcc5293b (diff)
downloadedk2-8c0b0b34f7875571ee9d3a2a1a28484cef36d969.tar.gz
edk2-8c0b0b34f7875571ee9d3a2a1a28484cef36d969.tar.bz2
edk2-8c0b0b34f7875571ee9d3a2a1a28484cef36d969.zip
OvmfPkg: Fix typing errors
Correct some typos (discovered with the codespell utility) Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Cc: Jordan Justen <jordan.l.justen@intel.com> Cc: Thomas Huth <thuth@redhat.com> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Diffstat (limited to 'OvmfPkg/XenPvBlkDxe')
-rw-r--r--OvmfPkg/XenPvBlkDxe/BlockIo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/OvmfPkg/XenPvBlkDxe/BlockIo.c b/OvmfPkg/XenPvBlkDxe/BlockIo.c
index ae6aa62ac0..70bf32cab0 100644
--- a/OvmfPkg/XenPvBlkDxe/BlockIo.c
+++ b/OvmfPkg/XenPvBlkDxe/BlockIo.c
@@ -156,7 +156,7 @@ XenPvBlkDxeBlockIoReadWriteBlocks (
Sector += IoData.Size / 512;
Status = XenPvBlockIo (&IoData, IsWrite);
if (EFI_ERROR (Status)) {
- DEBUG ((EFI_D_ERROR, "XenPvBlkDxe: Error durring %a operation.\n",
+ DEBUG ((EFI_D_ERROR, "XenPvBlkDxe: Error during %a operation.\n",
IsWrite ? "write" : "read"));
return Status;
}