diff options
author | Qiu Shumin <shumin.qiu@intel.com> | 2015-08-28 02:59:20 +0000 |
---|---|---|
committer | shenshushi <shenshushi@Edk2> | 2015-08-28 02:59:20 +0000 |
commit | 6252f2715af3f7d9d56980b1e0176ad069770e5f (patch) | |
tree | e4f93939cd40e918685871316a2ce263a5171ba6 /MdePkg/Library/UefiDevicePathLib/DevicePathToText.c | |
parent | a5fb1e05ffcd71f7bc793c3bdff879b50ef79ace (diff) | |
download | edk2-platforms-6252f2715af3f7d9d56980b1e0176ad069770e5f.tar.xz |
MdePkg: Refine the device path text format for Bluetooth to follow spec.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Qiu Shumin <shumin.qiu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18346 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/UefiDevicePathLib/DevicePathToText.c')
-rw-r--r-- | MdePkg/Library/UefiDevicePathLib/DevicePathToText.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Library/UefiDevicePathLib/DevicePathToText.c b/MdePkg/Library/UefiDevicePathLib/DevicePathToText.c index be4619ab85..627308c340 100644 --- a/MdePkg/Library/UefiDevicePathLib/DevicePathToText.c +++ b/MdePkg/Library/UefiDevicePathLib/DevicePathToText.c @@ -1584,7 +1584,7 @@ DevPathToTextBluetooth ( Bluetooth = DevPath;
UefiDevicePathLibCatPrint (
Str,
- L"Bluetooth(%02x:%02x:%02x:%02x:%02x:%02x)",
+ L"Bluetooth(%02x%02x%02x%02x%02x%02x)",
Bluetooth->BD_ADDR.Address[5],
Bluetooth->BD_ADDR.Address[4],
Bluetooth->BD_ADDR.Address[3],
|