Add unused attribute to ocur_ variable.

This commit is contained in:
Emanuele Giaquinta 2011-06-30 13:13:59 +00:00
parent 7075cdb24b
commit 92d4a272f9
1 changed files with 1 additions and 1 deletions

2
ev.c
View File

@ -966,7 +966,7 @@ array_realloc (int elem, void *base, int *cur, int cnt)
#define array_needsize(type,base,cur,cnt,init) \
if (expect_false ((cnt) > (cur))) \
{ \
int ocur_ = (cur); \
int ecb_unused ocur_ = (cur); \
(base) = (type *)array_realloc \
(sizeof (type), (base), &(cur), (cnt)); \
init ((base) + (ocur_), (cur) - ocur_); \