From 6619de070ab0da8e4586f7c70b0d82437004169c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Peter=20=C3=85strand=20=28astrand=29?= Date: Wed, 9 Jan 2019 09:54:31 +0100 Subject: [PATCH] freerdp_client_set_window_size should not be static Avoid GCC error, since it is not static according to wf_client.h. --- client/Windows/wf_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Windows/wf_client.c b/client/Windows/wf_client.c index 3cd396d..b14ada1 100644 --- a/client/Windows/wf_client.c +++ b/client/Windows/wf_client.c @@ -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); -- 2.7.4