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