From fd722b71e0bf0dfca6618e5e9f9225cb8ec5c983 Mon Sep 17 00:00:00 2001 From: Aaron Date: Fri, 6 Mar 2009 13:47:02 -0500 Subject: [PATCH] Remove compiler warning --- shell/ShellUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/ShellUtils.cpp b/shell/ShellUtils.cpp index 8896ac96fef..2a6f694c232 100644 --- a/shell/ShellUtils.cpp +++ b/shell/ShellUtils.cpp @@ -398,7 +398,7 @@ public: assert( dup2( pipeEnds[ 1 ], STDOUT_FILENO ) != -1 ); assert( dup2( pipeEnds[ 1 ], STDERR_FILENO ) != -1 ); execvp( argv_[ 0 ], argv_ ); - assert( ( "Unable to start program", false ) ); + assert( "Unable to start program" == 0 ); } int i = 0;