summaryrefslogtreecommitdiffstats
path: root/OvmfPkg/XenBusDxe/XenBus.c
diff options
context:
space:
mode:
authorScott Duplichan <scott@notabs.org>2014-11-14 17:35:35 +0000
committerlersek <lersek@Edk2>2014-11-14 17:35:35 +0000
commit017a48664a4f8718d00102eb94ac6b21185e5c21 (patch)
tree2747d282abaf176125818a98eabadff68de0f139 /OvmfPkg/XenBusDxe/XenBus.c
parentcec6ad0a4082545fa9f8d2b8e7612daa96f6672d (diff)
downloadedk2-017a48664a4f8718d00102eb94ac6b21185e5c21.tar.gz
edk2-017a48664a4f8718d00102eb94ac6b21185e5c21.tar.bz2
edk2-017a48664a4f8718d00102eb94ac6b21185e5c21.zip
OvmfPkg/XenBusDxe: fix VS2010 build failures
This patch contain only type cast. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Scott Duplichan <scott@notabs.org> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> Build-tested-by: Scott Duplichan <scott@notabs.org> Acked-by: Laszlo Ersek <lersek@redhat.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16392 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'OvmfPkg/XenBusDxe/XenBus.c')
-rw-r--r--OvmfPkg/XenBusDxe/XenBus.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/OvmfPkg/XenBusDxe/XenBus.c b/OvmfPkg/XenBusDxe/XenBus.c
index a7350586b3..f69c27dd18 100644
--- a/OvmfPkg/XenBusDxe/XenBus.c
+++ b/OvmfPkg/XenBusDxe/XenBus.c
@@ -182,7 +182,7 @@ XenBusAddDevice (
Private->XenBusIo.Type = AsciiStrDup (Type);
Private->XenBusIo.Node = AsciiStrDup (DevicePath);
Private->XenBusIo.Backend = BackendPath;
- Private->XenBusIo.DeviceId = AsciiStrDecimalToUintn (Id);
+ Private->XenBusIo.DeviceId = (UINT16)AsciiStrDecimalToUintn (Id);
Private->Dev = Dev;
TempXenBusPath = AllocateCopyPool (sizeof (XENBUS_DEVICE_PATH),
@@ -274,7 +274,7 @@ XenBusEnumerateDeviceType (
XenBusAddDevice (Dev, Type, Directory[Index]);
}
- FreePool (Directory);
+ FreePool ((VOID*)Directory);
}
@@ -310,7 +310,7 @@ XenBusEnumerateBus (
XenBusEnumerateDeviceType (Dev, Types[Index]);
}
- FreePool (Types);
+ FreePool ((VOID*)Types);
return XENSTORE_STATUS_SUCCESS;
}