Eina: fix compilation on strbuf.

SVN revision: 45965
This commit is contained in:
dieb 2010-02-07 17:33:26 +00:00 committed by dieb
parent 0cead88ce8
commit 470188ca4f
1 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@ struct _Eina_Strbuf
static void _eina_strbuf_init(Eina_Strbuf *buf);
static int _eina_strbuf_resize(Eina_Strbuf *buf, size_t size);
#define _eina_strbuf_grow(buf, size) \
if (size > buf->size) _eina_strbuf_resize(buf, size)
#define _eina_strbuf_grow(buf, _size) \
(_size > buf->size) ? _eina_strbuf_resize(buf, _size) : EINA_FALSE
Eina_Bool
eina_strbuf_init(void)