Module: wine Branch: master Commit: 492b65df1f764219790c83ffb3f1dbebfaace5e6 URL: https://source.winehq.org/git/wine.git/?a=commit;h=492b65df1f764219790c83ffb...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Mar 10 15:00:04 2021 +0100
jscript: Improve prop_get and prop_put debug traces.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/jscript/dispex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/jscript/dispex.c b/dlls/jscript/dispex.c index 5829cebe55b..efe8741f3c1 100644 --- a/dlls/jscript/dispex.c +++ b/dlls/jscript/dispex.c @@ -502,7 +502,7 @@ static HRESULT prop_get(jsdisp_t *This, dispex_prop_t *prop, jsval_t *r) return hres; }
- TRACE("%s ret %s\n", debugstr_w(prop->name), debugstr_jsval(*r)); + TRACE("%p.%s ret %s\n", This, debugstr_w(prop->name), debugstr_jsval(*r)); return hres; }
@@ -559,7 +559,7 @@ static HRESULT prop_put(jsdisp_t *This, dispex_prop_t *prop, jsval_t val) return E_FAIL; }
- TRACE("%s = %s\n", debugstr_w(prop->name), debugstr_jsval(val)); + TRACE("%p.%s = %s\n", This, debugstr_w(prop->name), debugstr_jsval(val));
hres = jsval_copy(val, &prop->u.val); if(FAILED(hres))