From fcbb395dc7ff3edab972b6d4b27dbbfb3305f5d7 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 26 Dec 2021 15:58:40 +0300 Subject: PBYTE -> uint8_t* --- plugins/Nudge/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/Nudge/src') diff --git a/plugins/Nudge/src/main.cpp b/plugins/Nudge/src/main.cpp index 1112a21959..d9957a0fff 100644 --- a/plugins/Nudge/src/main.cpp +++ b/plugins/Nudge/src/main.cpp @@ -291,7 +291,7 @@ void Nudge_SentStatus(CNudgeElement *n, MCONTACT hContact) dbei.timestamp = (DWORD)time(0); dbei.eventType = 1; dbei.cbBlob = (DWORD)mir_strlen(buff) + 1; - dbei.pBlob = (PBYTE)buff; + dbei.pBlob = (uint8_t*)buff; db_event_add(hContact, &dbei); } @@ -305,7 +305,7 @@ void Nudge_ShowStatus(CNudgeElement *n, MCONTACT hContact, DWORD timestamp) dbei.flags = DBEF_UTF; dbei.timestamp = timestamp; dbei.cbBlob = (DWORD)mir_strlen(buff) + 1; - dbei.pBlob = (PBYTE)buff; + dbei.pBlob = (uint8_t*)buff; db_event_add(hContact, &dbei); } -- cgit v1.2.3