1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-16 02:27:32 -05:00

Fix some missing void * and const in existing APIs.

Several changes here that should have been in commit 7babe66a8 but I
missed them.
This commit is contained in:
Simon Tatham
2018-06-02 07:52:26 +01:00
parent 6ce79d8d22
commit 8d882756b8
5 changed files with 13 additions and 9 deletions

View File

@ -605,7 +605,7 @@ void pfd_override_throttle(struct PortForwarding *pf, int enable)
/*
* Called to send data down the raw connection.
*/
int pfd_send(struct PortForwarding *pf, char *data, int len)
int pfd_send(struct PortForwarding *pf, const void *data, int len)
{
if (pf == NULL)
return 0;