From df099a54e37f942ad4275693769462870845d99c Mon Sep 17 00:00:00 2001 From: doursse Date: Sun, 19 Aug 2007 06:21:23 +0000 Subject: [PATCH] use standard syntax when initializing structures instead of specific gcc one SVN revision: 31396 --- legacy/evas/src/lib/engines/common/evas_tiler.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/legacy/evas/src/lib/engines/common/evas_tiler.c b/legacy/evas/src/lib/engines/common/evas_tiler.c index c31d2745cc..5e3f45a623 100644 --- a/legacy/evas/src/lib/engines/common/evas_tiler.c +++ b/legacy/evas/src/lib/engines/common/evas_tiler.c @@ -2,8 +2,8 @@ #ifdef EVAS_RECT_SPLIT -static const list_node_t list_node_zeroed = {.next = NULL}; -static const list_t list_zeroed = {.head = NULL, .tail = NULL}; +static const list_node_t list_node_zeroed = { NULL }; +static const list_t list_zeroed = { NULL, NULL }; typedef struct list_node_pool @@ -13,9 +13,7 @@ typedef struct list_node_pool int max; } list_node_pool_t; -static list_node_pool_t list_node_pool = { - .node = NULL, .len = 0, .max = 1024 -}; +static list_node_pool_t list_node_pool = { NULL, 0, 1024 }; void rect_list_node_pool_set_max(int max)