Skip to content

Commit

Permalink
Вывод числа шагов как беззнакового числа
Browse files Browse the repository at this point in the history
  • Loading branch information
Mazdaywik committed Nov 21, 2020
1 parent b24582e commit 69699bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/refalrts-vm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ void refalrts::VM::free_view_field() {

#if REFAL_5_LAMBDA_DIAGNOSTIC_ENABLED
if (m_diagnostic_config->print_statistics) {
fprintf(stderr, "Step count %d\n", m_step_counter);
fprintf(stderr, "Step count %u\n", m_step_counter);
}
#endif /* REFAL_5_LAMBDA_DIAGNOSTIC_ENABLED */
}
Expand Down

0 comments on commit 69699bd

Please sign in to comment.