From: Michael Schuldt Date: Fri, 23 Mar 2012 09:26:54 +0000 (+0100) Subject: LayerManagerCommands : Removes signed / unsigned mismatch X-Git-Tag: ivi-layer-management_version_0_9_6~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1557ca157345b322c623761ec66764c026f86c5;p=profile%2Fivi%2Flayer-management.git LayerManagerCommands : Removes signed / unsigned mismatch --- diff --git a/LayerManagerCommands/src/SurfaceSetNativeContentCommand.cpp b/LayerManagerCommands/src/SurfaceSetNativeContentCommand.cpp index 0bcec48..271cf4a 100644 --- a/LayerManagerCommands/src/SurfaceSetNativeContentCommand.cpp +++ b/LayerManagerCommands/src/SurfaceSetNativeContentCommand.cpp @@ -52,7 +52,7 @@ ExecutionResult SurfaceSetNativeContentCommand::execute(ICommandExecutor* execut result = ExecutionSuccessRedraw; } - else if(surface->getNativeContent() == m_nativeHandle) + else if( (unsigned int) surface->getNativeContent() == m_nativeHandle) { result = ExecutionSuccess; }