Module: wine Branch: master Commit: 4617d7753d768a854e1fb59f305e60b98b29134d URL: http://source.winehq.org/git/wine.git/?a=commit;h=4617d7753d768a854e1fb59f30...
Author: Francois Gouget fgouget@free.fr Date: Sat Feb 7 16:06:11 2009 +0100
urlmon: Make create_http_protocol() static.
---
dlls/urlmon/http.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/urlmon/http.c b/dlls/urlmon/http.c index 2e73653..9bb4ffa 100644 --- a/dlls/urlmon/http.c +++ b/dlls/urlmon/http.c @@ -933,7 +933,7 @@ static const IInternetProtocolVtbl HttpProtocolVtbl = { HttpProtocol_UnlockRequest };
-HRESULT create_http_protocol(BOOL https, void **ppobj) +static HRESULT create_http_protocol(BOOL https, void **ppobj) { HttpProtocol *ret;