mirror of https://github.com/FreeRDP/FreeRDP
freerdp_client_set_window_size should not be static
Avoid GCC error, since it is not static according to wf_client.h.
This commit is contained in:
parent
fcf59b9c4f
commit
6619de070a
|
@ -783,7 +783,7 @@ static int freerdp_client_focus_out(wfContext* wfc)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int freerdp_client_set_window_size(wfContext* wfc, int width, int height)
|
||||
int freerdp_client_set_window_size(wfContext* wfc, int width, int height)
|
||||
{
|
||||
WLog_DBG(TAG, "freerdp_client_set_window_size %d, %d", width, height);
|
||||
|
||||
|
|
Loading…
Reference in New Issue