Browse Source

fixed is_client_connected method in remote_bitbang class

pull/2317/head
Vladimir Efimov 2 months ago
parent
commit
4e02999d97
  1. 2
      riscv/remote_bitbang.cc

2
riscv/remote_bitbang.cc

@ -186,5 +186,5 @@ void remote_bitbang_t::execute_commands()
}
bool remote_bitbang_t::is_client_connected() const{
return client_fd != 0;
return client_fd > 0;
}
Loading…
Cancel
Save