Not a good day, second typo in a row in tcp_stream_create.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -233,7 +233,7 @@ tcp_stream_create (stream_t * stream, const char* host, int port, int flags) | ... | @@ -233,7 +233,7 @@ tcp_stream_create (stream_t * stream, const char* host, int port, int flags) |
233 | int ret; | 233 | int ret; |
234 | 234 | ||
235 | if (host == NULL) | 235 | if (host == NULL) |
236 | return MU_ERR_TCP_NO_HOST | 236 | return MU_ERR_TCP_NO_HOST; |
237 | 237 | ||
238 | if (port < 1) | 238 | if (port < 1) |
239 | return MU_ERR_TCP_NO_PORT; | 239 | return MU_ERR_TCP_NO_PORT; | ... | ... |
-
Please register or sign in to post a comment