More graceful output from failed verification

This commit is contained in:
Keith Winstein
2012-05-05 01:53:28 -04:00
parent 3573cec92a
commit 43182729ec
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -157,7 +157,7 @@ void TransportSender<MyState>::tick( void )
MyState newstate( assumed_receiver_state->state );
newstate.apply_string( diff );
if ( current_state.compare( newstate ) ) {
fprintf( stderr, "Diff: %s\n", diff.c_str() );
fprintf( stderr, "Warning, round-trip Instruction verification failed!\n" );
}
}