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

@@ -236,7 +236,7 @@ static void android_Pointer_Free(rdpContext* context, rdpPointer* pointer)
WINPR_ASSERT(context);
}
static BOOL android_Pointer_Set(rdpContext* context, const rdpPointer* pointer)
static BOOL android_Pointer_Set(rdpContext* context, rdpPointer* pointer)
{
WINPR_ASSERT(context);
WINPR_ASSERT(pointer);