From 57edcb77449ceacb5e329f1a7f9f7223797f7340 Mon Sep 17 00:00:00 2001 From: Martin Juul Date: Tue, 5 Aug 2025 18:11:54 +0200 Subject: [PATCH] Fix resource manger symbol In newer versions of php this symbol is named MUTEX_T --- src/buffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/buffer.h b/src/buffer.h index bc74d7a..8988d12 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -14,7 +14,7 @@ struct MemoryStack { int totalAllocated; int totalFreed; #ifdef ZTS - tsrm_mutex_t lock; + MUTEX_T lock; #endif };