2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 12:22:17 +00:00

Make sure that finish stops when returning from a tail call.

This commit is contained in:
Steven Watanabe
2015-03-23 11:45:47 -06:00
parent eb1e353840
commit 78d045e0df

View File

@@ -206,7 +206,7 @@ void debug_on_instruction( FRAME * frame, OBJECT * file, int line )
fflush( stdout );
debug_listen();
}
else if ( debug_state == DEBUG_FINISH && debug_depth == 0 )
else if ( debug_state == DEBUG_FINISH && debug_depth <= 0 )
{
debug_file = file;
debug_line = line;