diff options
author | George Hazan <george.hazan@gmail.com> | 2014-02-27 11:14:02 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-02-27 11:14:02 +0000 |
commit | 3e7ae9b675187052136075ea8ebfbad98673210b (patch) | |
tree | 82d3e2c5f9dd3488eb4ec8ecf766297b7bc2c9c8 /plugins/Dropbox/src/dropbox_services.cpp | |
parent | 2e51a3103f26ca7a9fec8f96baf56f4d51fd0112 (diff) |
warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@8284 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src/dropbox_services.cpp')
-rw-r--r-- | plugins/Dropbox/src/dropbox_services.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dropbox/src/dropbox_services.cpp b/plugins/Dropbox/src/dropbox_services.cpp index bae1d1d548..1368db4b5c 100644 --- a/plugins/Dropbox/src/dropbox_services.cpp +++ b/plugins/Dropbox/src/dropbox_services.cpp @@ -97,7 +97,7 @@ INT_PTR CDropbox::ProtoSendMessage(WPARAM wParam, LPARAM lParam) dbei.szModule = MODULE;
dbei.timestamp = time(NULL);
dbei.eventType = EVENTTYPE_MESSAGE;
- dbei.cbBlob = strlen(message);
+ dbei.cbBlob = (int)strlen(message);
dbei.pBlob = (PBYTE)message;
dbei.flags = DBEF_SENT | DBEF_UTF;
db_event_add(pccsd->hContact, &dbei);
|