0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00

Remove compiler warning

This commit is contained in:
Aaron 2009-03-06 13:47:02 -05:00
parent 9b3af26cbe
commit fd722b71e0

View File

@ -398,7 +398,7 @@ public:
assert( dup2( pipeEnds[ 1 ], STDOUT_FILENO ) != -1 ); assert( dup2( pipeEnds[ 1 ], STDOUT_FILENO ) != -1 );
assert( dup2( pipeEnds[ 1 ], STDERR_FILENO ) != -1 ); assert( dup2( pipeEnds[ 1 ], STDERR_FILENO ) != -1 );
execvp( argv_[ 0 ], argv_ ); execvp( argv_[ 0 ], argv_ );
assert( ( "Unable to start program", false ) ); assert( "Unable to start program" == 0 );
} }
int i = 0; int i = 0;