Fixed const correctness of pPointer_Set

Pointer might need to be modified
This commit is contained in:
akallabeth
2022-04-27 21:31:14 +02:00
committed by akallabeth
parent 667b471686
commit d68327ad74
7 changed files with 10 additions and 16 deletions

View File

@@ -147,7 +147,7 @@ static void ios_Pointer_Free(rdpContext *context, rdpPointer *pointer)
return;
}
static BOOL ios_Pointer_Set(rdpContext *context, const rdpPointer *pointer)
static BOOL ios_Pointer_Set(rdpContext *context, rdpPointer *pointer)
{
if (!context)
return FALSE;