hfp_ag: Fix empty parameter list in functions

This commit is contained in:
Syam Sidhardhan 2011-12-30 03:30:32 +05:30 committed by Denis Kenzior
parent 60976f1357
commit 7a01c16a4a
1 changed files with 2 additions and 2 deletions

View File

@ -190,7 +190,7 @@ static void call_modemwatch(struct ofono_modem *modem, void *user)
modem_watch(modem, TRUE, user);
}
static int hfp_ag_init()
static int hfp_ag_init(void)
{
sim_hash = g_hash_table_new(g_direct_hash, g_direct_equal);
@ -200,7 +200,7 @@ static int hfp_ag_init()
return 0;
}
static void hfp_ag_exit()
static void hfp_ag_exit(void)
{
__ofono_modemwatch_remove(modemwatch_id);
g_list_free(modems);