From 7fb30f82e76baf7c6ba8db64b2ab3fc17bc218e0 Mon Sep 17 00:00:00 2001 From: Stephen Date: Mon, 9 Sep 2024 11:15:20 +0100 Subject: [PATCH] fixed mismatched } caused by not using the END_FOR_EACH macro --- src/export-buf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/export-buf.c b/src/export-buf.c index a6de226..04ed441 100644 --- a/src/export-buf.c +++ b/src/export-buf.c @@ -352,7 +352,7 @@ static void egl_detachBackingImageFromSurface(NVDriver *drv, NVSurface *surface) img->surface = NULL; break; } - } + END_FOR_EACH pthread_mutex_unlock(&drv->imagesMutex); }