From 89b34bf63c44c0095055ba877049a9bbe9045292 Mon Sep 17 00:00:00 2001 From: Robear Selwans Date: Thu, 14 May 2026 23:42:35 +0300 Subject: [PATCH] Fixed issue with ev_vec_push macros --- ev_vec.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ev_vec.h b/ev_vec.h index 8c20ff8..0204a14 100644 --- a/ev_vec.h +++ b/ev_vec.h @@ -186,8 +186,8 @@ static struct ev_vec_meta_t *__svec_interm_md; * *Note* This is possibly replaceable with a variadic function. */ #define ev_vec_push(v, ...) \ - EV_FOREACH_UDATA(__ev_vec_internal_push, v, __VA_ARGS__); -#define __ev_vec_internal_push(v, var) ev_vec_push_impl((ev_vec_t*)v, var); + EV_FOREACH_UDATA(__ev_vec_internal_push, v, __VA_ARGS__) +#define __ev_vec_internal_push(v, var) ev_vec_push_impl((ev_vec_t*)v, var) /*! * \param vec_p A pointer to the vector that we want an iterator for