Commit 546a3f9590d1abbdcf826c0d152ede503f5c34be
1 parent
82fabecd
Exists in
master
and in
3 other branches
Implementando seleção por mouse (work in progress)
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
telnet.c
| ... | ... | @@ -395,7 +395,7 @@ void popup_a_sockerr(H3270 *session, char *fmt, ...) |
| 395 | 395 | #if defined(_WIN32) |
| 396 | 396 | const char *msg = win32_strerror(socket_errno()); |
| 397 | 397 | #else |
| 398 | - const char *msg = strerror(errno) | |
| 398 | + const char *msg = strerror(errno); | |
| 399 | 399 | #endif // WIN32 |
| 400 | 400 | va_list args; |
| 401 | 401 | char buffer[4096]; | ... | ... |