From 3e411a2d9ce2c856b7063d84cf8cfe1800d89600 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Hentschel?= Date: Mon, 24 Jan 2011 20:43:07 +0100 Subject: [PATCH] gameux: Only trace on success (clang). --- dlls/gameux/gamestatistics.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/dlls/gameux/gamestatistics.c b/dlls/gameux/gamestatistics.c index 61df25e9bcc..b0e7674a2fd 100644 --- a/dlls/gameux/gamestatistics.c +++ b/dlls/gameux/gamestatistics.c @@ -564,11 +564,12 @@ static HRESULT GAMEUX_loadStatisticsFromFile(struct GAMEUX_STATS *data) } if(SUCCEEDED(hr)) + { lstrcpynW(data->categories[i].stats[j].sValue, V_BSTR(&vValue), MAX_VALUE_LENGTH); - - TRACE(" statistic %d name %s value %s\n", j, - debugstr_w(data->categories[i].stats[j].sName), - debugstr_w(data->categories[i].stats[j].sValue)); + TRACE("statistic %d name %s value %s\n", j, + debugstr_w(data->categories[i].stats[j].sName), + debugstr_w(data->categories[i].stats[j].sValue)); + } IXMLDOMElement_Release(statisticElement); } -- 2.11.4.GIT