From 55b34fa8e6008372240e6f025199aa88e7a37934 Mon Sep 17 00:00:00 2001 From: Michael Bouchaud Date: Mon, 5 May 2014 22:51:07 +0000 Subject: [PATCH] entrance: indent --- src/bin/entrance_conf.h | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/bin/entrance_conf.h b/src/bin/entrance_conf.h index bfbf2a2..e5235fd 100644 --- a/src/bin/entrance_conf.h +++ b/src/bin/entrance_conf.h @@ -8,20 +8,20 @@ typedef struct Entrance_Conf_Background_ const char *name; } Entrance_Conf_Background; -#define IMG_LIST_FORK(l_src, l_dest) \ - do { \ - Entrance_Image *ptr; \ - Entrance_Conf_Background *tmp_ptr; \ - Eina_List *img_list; \ - EINA_LIST_FOREACH(l_src, img_list, ptr) \ - { \ - tmp_ptr = malloc(sizeof(Entrance_Conf_Background)); \ - tmp_ptr->path = eina_stringshare_add(ptr->path); \ - tmp_ptr->group = eina_stringshare_add(ptr->group); \ - entrance_conf_background_title_gen(tmp_ptr);\ - l_dest = eina_list_append(l_dest, tmp_ptr); \ - } \ - }while(0); +#define IMG_LIST_FORK(l_src, l_dest) \ + do { \ + Entrance_Image *ptr; \ + Entrance_Conf_Background *tmp_ptr; \ + Eina_List *img_list; \ + EINA_LIST_FOREACH(l_src, img_list, ptr) \ + { \ + tmp_ptr = malloc(sizeof(Entrance_Conf_Background)); \ + tmp_ptr->path = eina_stringshare_add(ptr->path); \ + tmp_ptr->group = eina_stringshare_add(ptr->group); \ + entrance_conf_background_title_gen(tmp_ptr); \ + l_dest = eina_list_append(l_dest, tmp_ptr); \ + } \ + } while(0); typedef void (*Entrance_Conf_Begin) (void); typedef void (*Entrance_Conf_End) (void);