From e97233217ed6d37d7bb7fefb0ff0821515a23b48 Mon Sep 17 00:00:00 2001 From: jljusten Date: Fri, 17 Sep 2010 20:09:48 +0000 Subject: ShellPkg: Fix several GCC compiler warnings git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10890 6f19259b-4bc3-4df7-8a09-765794883524 --- ShellPkg/Library/UefiShellLevel2CommandsLib/Cp.c | 2 ++ ShellPkg/Library/UefiShellLevel2CommandsLib/Map.c | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'ShellPkg/Library/UefiShellLevel2CommandsLib') diff --git a/ShellPkg/Library/UefiShellLevel2CommandsLib/Cp.c b/ShellPkg/Library/UefiShellLevel2CommandsLib/Cp.c index e35bf18824..94161cfecb 100644 --- a/ShellPkg/Library/UefiShellLevel2CommandsLib/Cp.c +++ b/ShellPkg/Library/UefiShellLevel2CommandsLib/Cp.c @@ -111,6 +111,8 @@ CopySingleFile( *Resp = Response; case ShellPromptResponseYes: break; + default: + return SHELL_ABORTED; } } } diff --git a/ShellPkg/Library/UefiShellLevel2CommandsLib/Map.c b/ShellPkg/Library/UefiShellLevel2CommandsLib/Map.c index 5d6a200c19..c4c8c87ff4 100644 --- a/ShellPkg/Library/UefiShellLevel2CommandsLib/Map.c +++ b/ShellPkg/Library/UefiShellLevel2CommandsLib/Map.c @@ -790,9 +790,9 @@ IsNumberLetterOnly( ) { while(String != NULL && *String != CHAR_NULL) { - if (! ( *String >= L'a' && *String <= L'z' - || *String >= L'A' && *String <= L'Z' - || *String >= L'0' && *String <= L'9') + if (! ((*String >= L'a' && *String <= L'z') || + (*String >= L'A' && *String <= L'Z') || + (*String >= L'0' && *String <= L'9')) ){ return (FALSE); } -- cgit v1.2.3