From 4fb9db65bedad4f25923fb2c0bf25dbabc5227bb Mon Sep 17 00:00:00 2001 From: Tobias Weimer Date: Mon, 18 Mar 2013 21:13:09 +0000 Subject: quick fix for the twitter profile URLs git-svn-id: http://svn.miranda-ng.org/main/trunk@4099 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Twitter/src/http.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'protocols/Twitter/src/http.cpp') diff --git a/protocols/Twitter/src/http.cpp b/protocols/Twitter/src/http.cpp index 877399cc11..f953ec1973 100644 --- a/protocols/Twitter/src/http.cpp +++ b/protocols/Twitter/src/http.cpp @@ -23,8 +23,7 @@ along with this program. If not, see . std::string http::url_encode(const std::string &s) { - char *encoded = reinterpret_cast(CallService( MS_NETLIB_URLENCODE, - 0,reinterpret_cast(s.c_str()))); + char *encoded = reinterpret_cast(CallService( MS_NETLIB_URLENCODE,0,reinterpret_cast(s.c_str()))); std::string ret = encoded; HeapFree(GetProcessHeap(),0,encoded); -- cgit v1.2.3