From ef7dcf5b2abbd92fa5213a3f930ad53b2261adeb Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sat, 28 Aug 2010 16:37:10 -0400 Subject: Coding style and whitespace cleanup. --- libart_lgpl/art_misc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libart_lgpl') diff --git a/libart_lgpl/art_misc.h b/libart_lgpl/art_misc.h index 054b912dbd..de91432c5a 100644 --- a/libart_lgpl/art_misc.h +++ b/libart_lgpl/art_misc.h @@ -46,7 +46,7 @@ gpointer art_realloc(gpointer ptr, gsize size); /* This one must be used carefully - in particular, p and max should be variables. They can also be pstruct->el lvalues. */ #define art_expand(p, type, max) \ - do { if(max) { p = art_renew (p, type, max <<= 1); } \ + do { if (max) { p = art_renew (p, type, max <<= 1); } \ else { max = 1; p = art_new(type, 1); } } while (0) typedef gint art_boolean; -- cgit v1.2.3