Fix build error on Linux/POSIX

This commit is contained in:
2025-03-03 12:03:26 +03:00
parent fe2f39d489
commit 83a4e723bf
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ struct BH_ThreadContext
static void *BH_ThreadRun(void *context)
{
BH_ThreadCallback callback;
void *data, *result;
void *data;
callback = ((struct BH_ThreadContext *)context)->callback;
data = ((struct BH_ThreadContext *)context)->data;