diff options
author | George Hazan <george.hazan@gmail.com> | 2015-09-03 20:01:03 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-09-03 20:01:03 +0000 |
commit | 1814447e666da0be0f2ae9c3e6606e0dacd44e3e (patch) | |
tree | 0101ac40d890e01d075bf60ae31dabed184f9bd2 /plugins/Toaster/src | |
parent | 5a14cacb717cd2fe9c91abed83dc636ba1aec7d5 (diff) |
warning fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@15176 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Toaster/src')
-rw-r--r-- | plugins/Toaster/src/toast_notification.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Toaster/src/toast_notification.cpp b/plugins/Toaster/src/toast_notification.cpp index 70bd8865ca..4eb83adca4 100644 --- a/plugins/Toaster/src/toast_notification.cpp +++ b/plugins/Toaster/src/toast_notification.cpp @@ -56,7 +56,7 @@ HRESULT ToastNotification::CreateXml(_Outptr_ ABI::Windows::Data::Xml::Dom::IXml xmlDestroyNode(xmlToast);
- CHECKHR(xmlDocument->LoadXml(StringReferenceWrapper(xtmp, xlen).Get()));
+ CHECKHR(xmlDocument->LoadXml(StringReferenceWrapper(xtmp, (UINT32)xlen).Get()));
return xmlDocument.CopyTo(xml);
}
|