From 57925606c0e410a210395ac5dd58146e87e729cf Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Thu, 13 May 2010 13:51:38 -0500 Subject: [PATCH] stkutil: file_list instead of fl is better --- src/stkutil.c | 6 +++--- src/stkutil.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index 39ce2ff4..75144924 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -2522,8 +2522,8 @@ static gboolean parse_setup_call(struct stk_command *command, static void destroy_refresh(struct stk_command *command) { - g_slist_foreach(command->refresh.fl, (GFunc)g_free, NULL); - g_slist_free(command->refresh.fl); + g_slist_foreach(command->refresh.file_list, (GFunc)g_free, NULL); + g_slist_free(command->refresh.file_list); g_free(command->refresh.alpha_id); } @@ -2540,7 +2540,7 @@ static gboolean parse_refresh(struct stk_command *command, return FALSE; ret = parse_dataobj(iter, STK_DATA_OBJECT_TYPE_FILE_LIST, 0, - &obj->fl, + &obj->file_list, STK_DATA_OBJECT_TYPE_AID, 0, &obj->aid, STK_DATA_OBJECT_TYPE_ALPHA_ID, 0, diff --git a/src/stkutil.h b/src/stkutil.h index d974ea16..516fdc42 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -875,7 +875,7 @@ struct stk_command_setup_call { }; struct stk_command_refresh { - GSList *fl; + GSList *file_list; struct stk_aid aid; char *alpha_id; struct stk_icon_id icon_id;