Revision: 15889
          http://sourceforge.net/p/edk2/code/15889
Author:   jljusten
Date:     2014-08-25 17:56:27 +0000 (Mon, 25 Aug 2014)
Log Message:
-----------
ShellPkg: Replace non-ASCII character in Pci.c to fix GCC build error

For Invalid character ?\226?\128?\152-?\226?\128?\153 in Pci.c line 806 and 
line 811, using ASCII
encoding byte 0x2d to replace.

Example error from GCC 4.9:

ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c:806:5: error: converting to 
execution character set: Invalid or incomplete multibyte or wide character
     L"Ethernet (802.11a ?\239?\191?\189 5 GHz)",
     ^

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Qiu Shumin <[email protected]>
Reviewed-by: Jaben Carsey <[email protected]>
Tested-by: Jordan Justen <[email protected]>

Modified Paths:
--------------
    trunk/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c

Modified: trunk/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c
===================================================================
--- trunk/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c        
2014-08-25 08:04:52 UTC (rev 15888)
+++ trunk/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/Pci.c        
2014-08-25 17:56:27 UTC (rev 15889)
@@ -803,12 +803,12 @@
   },
   {
     0x20,
-    L"Ethernet (802.11a \x96 5 GHz)",
+    L"Ethernet (802.11a - 5 GHz)",
     PCIBlankEntry
   },
   {
     0x21,
-    L"Ethernet (802.11b \x96 2.4 GHz)",
+    L"Ethernet (802.11b - 2.4 GHz)",
     PCIBlankEntry
   },
   {

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to