diff options
author | Denis Kenzior <denkenz@gmail.com> | 2010-05-13 13:51:38 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-05-13 13:51:38 -0500 |
commit | 57925606c0e410a210395ac5dd58146e87e729cf (patch) | |
tree | c189f47bcc5ad688995c4436ed0cb50305e411fb /src | |
parent | 8a60f1244c655ce6709758bc0a2e350eba420899 (diff) | |
download | ofono-57925606c0e410a210395ac5dd58146e87e729cf.tar.bz2 |
stkutil: file_list instead of fl is better
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; |