mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-04-20 20:45:02 -05:00
Fix warning about mismatched constness.
This commit is contained in:
parent
6539d39755
commit
9965cd8a53
@ -1658,7 +1658,7 @@ int select_result(WPARAM wParam, LPARAM lParam)
|
|||||||
ret = p_recv(s->s, buf, sizeof(buf), MSG_OOB);
|
ret = p_recv(s->s, buf, sizeof(buf), MSG_OOB);
|
||||||
noise_ultralight(ret);
|
noise_ultralight(ret);
|
||||||
if (ret <= 0) {
|
if (ret <= 0) {
|
||||||
char *str = (ret == 0 ? "Internal networking trouble" :
|
const char *str = (ret == 0 ? "Internal networking trouble" :
|
||||||
winsock_error_string(p_WSAGetLastError()));
|
winsock_error_string(p_WSAGetLastError()));
|
||||||
/* We're inside the Windows frontend here, so we know
|
/* We're inside the Windows frontend here, so we know
|
||||||
* that the frontend handle is unnecessary. */
|
* that the frontend handle is unnecessary. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user