diff options
author | DaveTBlake <oak99sky@yahoo.co.uk> | 2019-04-10 06:31:51 +0100 |
---|---|---|
committer | DaveTBlake <oak99sky@yahoo.co.uk> | 2019-04-10 07:17:17 +0100 |
commit | 83dd26698077bbdc166134df3c437a27aed2f602 (patch) | |
tree | 201c345bcdb9048ab38f62111896edfe101fc990 | |
parent | 4eb34ebe68452821b97befbcc4a8fcb663924f5b (diff) |
Fix log statement - remove { and } from format are not parsing
-rw-r--r-- | xbmc/platform/win32/IMMNotificationClient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/platform/win32/IMMNotificationClient.h b/xbmc/platform/win32/IMMNotificationClient.h index 9a6212bc11..39ed24c64c 100644 --- a/xbmc/platform/win32/IMMNotificationClient.h +++ b/xbmc/platform/win32/IMMNotificationClient.h @@ -146,7 +146,7 @@ public: HRESULT STDMETHODCALLTYPE OnPropertyValueChanged(LPCWSTR pwstrDeviceId, const PROPERTYKEY key) { - CLog::Log(LOGDEBUG, "%s: Changed device property of %s is {{%8.8x-%4.4x-%4.4x-%2.2x%2.2x-%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x}}#%d", + CLog::Log(LOGDEBUG, "%s: Changed device property of %s is (%8.8x-%4.4x-%4.4x-%2.2x%2.2x-%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x)#%d", __FUNCTION__, FromW(pwstrDeviceId), key.fmtid.Data1, key.fmtid.Data2, key.fmtid.Data3, key.fmtid.Data4[0], key.fmtid.Data4[1], key.fmtid.Data4[2], key.fmtid.Data4[3], |