summaryrefslogtreecommitdiff
path: root/plugins/Spamotron/src/utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Spamotron/src/utils.cpp')
-rw-r--r--plugins/Spamotron/src/utils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Spamotron/src/utils.cpp b/plugins/Spamotron/src/utils.cpp
index c829b5f101..3c17ff7dbb 100644
--- a/plugins/Spamotron/src/utils.cpp
+++ b/plugins/Spamotron/src/utils.cpp
@@ -465,7 +465,7 @@ int LogToSystemHistory(char *message, char *origmessage)
DBEVENTINFO dbei = {};
dbei.timestamp = time(&tm);
dbei.szModule = MODULENAME;
- dbei.pBlob = (uint8_t*)msg;
+ dbei.pBlob = msg;
if (origmessage)
dbei.cbBlob = (1 + mir_snprintf(msg, "%s: %s%s %s: %s", MODULENAME, message, DOT(message), Translate("Their message was"), origmessage));
else
@@ -498,7 +498,7 @@ void MarkUnread(MCONTACT hContact)
pos += mir_strlen((const char*)pos)+1;
memcpy(&dbei.cbBlob, pos, sizeof(uint32_t)); pos += sizeof(uint32_t);
- dbei.pBlob = (uint8_t*)malloc(dbei.cbBlob);
+ dbei.pBlob = (char *)malloc(dbei.cbBlob);
memcpy(dbei.pBlob, pos, dbei.cbBlob);
pos += dbei.cbBlob;
db_event_add(hContact,&dbei);