Revision: 15006
          http://sourceforge.net/p/edk2/code/15006
Author:   shenshushi
Date:     2013-12-19 02:03:42 +0000 (Thu, 19 Dec 2013)
Log Message:
-----------
Converse the return value from 'int' to 'BOOLEAN' for function 
?\226?\128?\152ContainsSplit?\226?\128?\153 in Shell.c.

Signed-off-by: Shumin Qiu <[email protected]>
Reviewed-by: Ni, Ruiyu <[email protected]>

Modified Paths:
--------------
    trunk/edk2/ShellPkg/Application/Shell/Shell.c

Modified: trunk/edk2/ShellPkg/Application/Shell/Shell.c
===================================================================
--- trunk/edk2/ShellPkg/Application/Shell/Shell.c       2013-12-18 19:57:57 UTC 
(rev 15005)
+++ trunk/edk2/ShellPkg/Application/Shell/Shell.c       2013-12-19 02:03:42 UTC 
(rev 15006)
@@ -144,7 +144,7 @@
 {
   CONST CHAR16 *TempSpot;
   TempSpot = FindSplit(CmdLine);
-  return (TempSpot != NULL && *TempSpot != CHAR_NULL);
+  return (BOOLEAN) ((TempSpot != NULL) && (*TempSpot != CHAR_NULL));
 }
 
 /**

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


------------------------------------------------------------------------------
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to