1
0
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:
Jacob Nevins
2002-10-23 14:03:11 +00:00
parent 38413e0530
commit 771b0299c3
4 changed files with 9 additions and 9 deletions

4
raw.c
View File

@ -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;