Hi All,
The wrong type of slash was used in "\r\n" when printing out additional information in the PCI UEFI Shell 2.0 Command. Please review the attached patch which fixes this.

--------------------
ShellPkg: Fix wrong type of slash used in "pci -i".

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Benjamin Frisch <[email protected]>
Signed-off-by: Alex Becker <[email protected]>

--------------------

Thanks,
Benjamin Frisch
Index: Library/UefiShellDebug1CommandsLib/Pci.c
===================================================================
--- Library/UefiShellDebug1CommandsLib/Pci.c    (revision 14036)
+++ Library/UefiShellDebug1CommandsLib/Pci.c    (working copy)
@@ -2659,7 +2659,7 @@
   //
   // Print register Revision ID
   //
-  ShellPrintEx(-1, -1, L"/r/n");
+  ShellPrintEx(-1, -1, L"\r\n");
   ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_PCI_LINE_RID), 
gShellDebug1HiiHandle,
     INDEX_OF (&(Common->RevisionId)),
     Common->RevisionId
------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_123012
_______________________________________________
edk2-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-devel

Reply via email to