mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-14 01:27:35 -05:00
Fixes for (Backend)->size() changes -- internal declarations didn't include
new arguments and neither did internal calls. [originally from svn r2119]
This commit is contained in:
4
raw.c
4
raw.c
@ -17,7 +17,7 @@ static Socket s = NULL;
|
||||
static int raw_bufsize;
|
||||
static void *frontend;
|
||||
|
||||
static void raw_size(void);
|
||||
static void raw_size(int width, int height);
|
||||
|
||||
static void c_write(char *buf, int len)
|
||||
{
|
||||
@ -130,7 +130,7 @@ static int raw_sendbuffer(void)
|
||||
/*
|
||||
* Called to set the size of the window
|
||||
*/
|
||||
static void raw_size(void)
|
||||
static void raw_size(int width, int height)
|
||||
{
|
||||
/* Do nothing! */
|
||||
return;
|
||||
|
Reference in New Issue
Block a user