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:
@ -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;
|
||||
|
Reference in New Issue
Block a user