Rob Shearman : rpcrt4: Remove unnecessary quotes in traces, as debugstr_a and debugstr_w add them instead.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Nov 6 05:48:40 CST 2006


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

Author: Rob Shearman <rob at codeweavers.com>
Date:   Sun Nov  5 19:01:42 2006 +0000

rpcrt4: Remove unnecessary quotes in traces, as debugstr_a and debugstr_w add them instead.

---

 dlls/rpcrt4/rpc_binding.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/rpcrt4/rpc_binding.c b/dlls/rpcrt4/rpc_binding.c
index b09e6d6..eda2322 100644
--- a/dlls/rpcrt4/rpc_binding.c
+++ b/dlls/rpcrt4/rpc_binding.c
@@ -138,7 +138,7 @@ RPC_STATUS RPCRT4_CreateBindingW(RpcBind
 
 RPC_STATUS RPCRT4_CompleteBindingA(RpcBinding* Binding, LPSTR NetworkAddr,  LPSTR Endpoint,  LPSTR NetworkOptions)
 {
-  TRACE("(RpcBinding == ^%p, NetworkAddr == \"%s\", EndPoint == \"%s\", NetworkOptions == \"%s\")\n", Binding,
+  TRACE("(RpcBinding == ^%p, NetworkAddr == %s, EndPoint == %s, NetworkOptions == %s)\n", Binding,
    debugstr_a(NetworkAddr), debugstr_a(Endpoint), debugstr_a(NetworkOptions));
 
   RPCRT4_strfree(Binding->NetworkAddr);
@@ -156,7 +156,7 @@ RPC_STATUS RPCRT4_CompleteBindingA(RpcBi
 
 RPC_STATUS RPCRT4_CompleteBindingW(RpcBinding* Binding, LPWSTR NetworkAddr, LPWSTR Endpoint, LPWSTR NetworkOptions)
 {
-  TRACE("(RpcBinding == ^%p, NetworkAddr == \"%s\", EndPoint == \"%s\", NetworkOptions == \"%s\")\n", Binding, 
+  TRACE("(RpcBinding == ^%p, NetworkAddr == %s, EndPoint == %s, NetworkOptions == %s)\n", Binding, 
    debugstr_w(NetworkAddr), debugstr_w(Endpoint), debugstr_w(NetworkOptions));
 
   RPCRT4_strfree(Binding->NetworkAddr);




More information about the wine-cvs mailing list