diff options
author | Syam Sidhardhan <syamsidhardh@gmail.com> | 2011-12-30 03:30:32 +0530 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2011-12-28 16:18:07 -0600 |
commit | 7a01c16a4a11356f99dcbce443a2502a7a34f918 (patch) | |
tree | 32b3635d6f021275c00ae4062ba3f265b03de22c | |
parent | 60976f13574c3ec228715a6df276284d5a277702 (diff) | |
download | ofono-7a01c16a4a11356f99dcbce443a2502a7a34f918.tar.bz2 |
hfp_ag: Fix empty parameter list in functions
-rw-r--r-- | plugins/hfp_ag.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/hfp_ag.c b/plugins/hfp_ag.c index 4a244d9d..c2d1d306 100644 --- a/plugins/hfp_ag.c +++ b/plugins/hfp_ag.c @@ -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); |