Andrew Eikum : jsproxy: Use debugstr_a on URL.

Alexandre Julliard julliard at winehq.org
Fri Feb 10 16:02:25 CST 2017


Module: wine
Branch: master
Commit: aee52678f29be426bb7108296f1ef0931bb2d160
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=aee52678f29be426bb7108296f1ef0931bb2d160

Author: Andrew Eikum <aeikum at codeweavers.com>
Date:   Fri Feb 10 13:35:07 2017 -0600

jsproxy: Use debugstr_a on URL.

Signed-off-by: Andrew Eikum <aeikum at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/jsproxy/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/jsproxy/main.c b/dlls/jsproxy/main.c
index 11a671a..1ad57aa 100644
--- a/dlls/jsproxy/main.c
+++ b/dlls/jsproxy/main.c
@@ -635,7 +635,7 @@ BOOL WINAPI InternetGetProxyInfo( LPCSTR url, DWORD len_url, LPCSTR hostname, DW
     WCHAR *urlW = NULL, *hostnameW = NULL;
     BOOL ret = FALSE;
 
-    TRACE( "%s, %u, %s, %u, %p, %p\n", url, len_url, hostname, len_hostname, proxy, len_proxy );
+    TRACE( "%s, %u, %s, %u, %p, %p\n", debugstr_a(url), len_url, hostname, len_hostname, proxy, len_proxy );
 
     EnterCriticalSection( &cs_jsproxy );
 




More information about the wine-cvs mailing list