From 022ed0d7885af824ffce1ee700af6554df4c8d65 Mon Sep 17 00:00:00 2001 From: Qiu Shumin Date: Fri, 6 Jun 2014 08:47:18 +0000 Subject: [PATCH] Use a compare operator for Non-Boolean comparison in 'map.c'. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Qiu Shumin Reviewed-by: Jaben carsey git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15559 6f19259b-4bc3-4df7-8a09-765794883524 --- ShellPkg/Library/UefiShellLevel2CommandsLib/Map.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ShellPkg/Library/UefiShellLevel2CommandsLib/Map.c b/ShellPkg/Library/UefiShellLevel2CommandsLib/Map.c index 4865d0e7a1..4763cfccca 100644 --- a/ShellPkg/Library/UefiShellLevel2CommandsLib/Map.c +++ b/ShellPkg/Library/UefiShellLevel2CommandsLib/Map.c @@ -345,7 +345,7 @@ MappingListHasType( FreePool(NewSpecific); } if ( Consist - && !Specific + && Specific == NULL && (SearchList(MapList, L"HD*", NULL, TRUE, TRUE, L";") ||SearchList(MapList, L"CD*", NULL, TRUE, TRUE, L";") ||SearchList(MapList, L"F*", NULL, TRUE, TRUE, L";") @@ -354,7 +354,7 @@ MappingListHasType( } if ( Normal - && !Specific + && Specific == NULL && (SearchList(MapList, L"FS", NULL, FALSE, TRUE, L";") ||SearchList(MapList, L"BLK", NULL, FALSE, TRUE, L";"))){ return (TRUE); -- 2.39.2