2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-21 15:02:19 +00:00

Fix warnings.

This commit is contained in:
Rene Rivera
2022-03-03 23:19:42 -06:00
parent e0c7d35b1f
commit b793d6f0a6
2 changed files with 2 additions and 1 deletions

View File

@@ -2691,7 +2691,7 @@ static int process_command( char * line )
*iter++ = '\0';
}
}
result = run_command( tokens.size(), const_cast<const char **>( &tokens[0] ) );
result = run_command( (int) tokens.size(), const_cast<const char **>( &tokens[0] ) );
return result;
}

View File

@@ -1291,6 +1291,7 @@ static int32_t get_free_cmdtab_slot()
return slot;
err_printf( "no slots for child!\n" );
b2::clean_exit( EXITBAD );
return -1;
}