diff options
author | George Hazan <george.hazan@gmail.com> | 2015-06-06 10:23:34 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-06-06 10:23:34 +0000 |
commit | 77778c2b9236077c7e79f06aa798affa2f90a1db (patch) | |
tree | 84522dfa63e6f5982614e61a0b1ff2467620d441 /plugins/SimpleAR/src/Main.cpp | |
parent | 70cbc6e77f935b7116c1080033f5d7d5b604b5a7 (diff) |
fix for some warnings
git-svn-id: http://svn.miranda-ng.org/main/trunk@14023 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SimpleAR/src/Main.cpp')
-rw-r--r-- | plugins/SimpleAR/src/Main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SimpleAR/src/Main.cpp b/plugins/SimpleAR/src/Main.cpp index 904cf42461..c6a38af98c 100644 --- a/plugins/SimpleAR/src/Main.cpp +++ b/plugins/SimpleAR/src/Main.cpp @@ -236,7 +236,7 @@ INT addEvent(WPARAM hContact, LPARAM hDBEvent) dbei.flags = DBEF_UTF | DBEF_SENT; //DBEF_READ;
dbei.szModule = pszProto;
dbei.timestamp = time(NULL);
- dbei.cbBlob = mir_strlen(pszUtf) + 1;
+ dbei.cbBlob = (int)mir_strlen(pszUtf) + 1;
dbei.pBlob = (PBYTE)pszUtf;
db_event_add(hContact, &dbei);
|