Skip to content

Commit

Permalink
warning
Browse files Browse the repository at this point in the history
  • Loading branch information
folkertvanheusden committed May 17, 2024
1 parent a1932b1 commit 28aaa49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dc11.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ dc11::~dc11()

void dc11::show_state(console *const cnsl) const
{
for(int i=0; i<comm_interfaces.size(); i++) {
cnsl->put_string_lf(format("* LINE %d", i + 1));
for(size_t i=0; i<comm_interfaces.size(); i++) {
cnsl->put_string_lf(format("* LINE %zu", i + 1));

#if 0 // TODO
if (i == serial_line) {
Expand Down

0 comments on commit 28aaa49

Please sign in to comment.