Skip to content

Commit

Permalink
another var fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bertmelis authored Jul 15, 2024
1 parent 5c36481 commit 03cb5c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Transport/ClientPosix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ bool ClientPosix::connect(const char* hostname, uint16_t port) {
hints.ai_socktype = SOCK_STREAM;
hints.ai_protocol = IPPROTO_TCP;

emc_log_i("connecting to %s:%d", host, port);
emc_log_i("Connecting to %s:%d", hostname, port);

err = getaddrinfo(hostname, port_str, &hints, &addrs);
if (err != 0) {
Expand Down

0 comments on commit 03cb5c1

Please sign in to comment.