diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/stkutil.c | 6 | ||||
-rw-r--r-- | 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; |