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:
Peter Åstrand (astrand) 2019-01-09 09:54:31 +01:00
parent fcf59b9c4f
commit 6619de070a
1 changed files with 1 additions and 1 deletions

View File

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