Reviewed-by: Jaben Carsey <[email protected]>
> -----Original Message----- > From: edk2-devel [mailto:[email protected]] On Behalf Of > Samer El-Haj-Mahmoud > Sent: Monday, September 14, 2015 2:13 PM > To: [email protected] > Cc: Qiu, Shumin <[email protected]>; Samer El-Haj-Mahmoud > <[email protected]>; Samer El-Haj-Mahmoud <samer.el-haj- > [email protected]> > Subject: [edk2] [PATCH] ShellPkg: Fix a command line unicode string type > Importance: High > > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Samer El-Haj-Mahmoud <[email protected]> > --- > ShellPkg/Library/UefiShellDriver1CommandsLib/Reconnect.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/ShellPkg/Library/UefiShellDriver1CommandsLib/Reconnect.c > b/ShellPkg/Library/UefiShellDriver1CommandsLib/Reconnect.c > index 092e2c9..d2ae8e8 100644 > --- a/ShellPkg/Library/UefiShellDriver1CommandsLib/Reconnect.c > +++ b/ShellPkg/Library/UefiShellDriver1CommandsLib/Reconnect.c > @@ -1,8 +1,9 @@ > /** @file > Main file for Reconnect shell Driver1 function. > > - (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> > Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR> > + (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> > + (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR> > This program and the accompanying materials > are licensed and made available under the terms and conditions of the BSD > License > which accompanies this distribution. The full text of the license may be > found at > @@ -75,7 +76,7 @@ ShellCommandRunReconnect ( > Status = ShellCommandLineParse (ParamList, &Package, &ProblemParam, > TRUE); > if (EFI_ERROR(Status)) { > if (Status == EFI_VOLUME_CORRUPTED && ProblemParam != NULL) { > - ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PROBLEM), > gShellDriver1HiiHandle, "reconnect", ProblemParam); > + ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PROBLEM), > gShellDriver1HiiHandle, L"reconnect", ProblemParam); > FreePool(ProblemParam); > ShellStatus = SHELL_INVALID_PARAMETER; > } else { > -- > 1.9.5.msysgit.1 > > _______________________________________________ > edk2-devel mailing list > [email protected] > https://lists.01.org/mailman/listinfo/edk2-devel _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

