From 58b41bd1d206a10b8b589ca0a97e223b997c19be Mon Sep 17 00:00:00 2001 From: Sara Date: Thu, 25 Jan 2024 09:59:13 +0100 Subject: [PATCH] fix: Drop::data is no longer void const*, instead void* --- core/src/drop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/drop.h b/core/src/drop.h index bc237d8..7b51877 100644 --- a/core/src/drop.h +++ b/core/src/drop.h @@ -8,7 +8,7 @@ typedef struct { } IDrop; typedef struct { - void const* data; + void* data; IDrop const* tc; } Drop;