summaryrefslogtreecommitdiffstats
path: root/src/call-forwarding.c
diff options
context:
space:
mode:
authorJeevaka Badrappan <jeevaka.badrappan@elektrobit.com>2010-11-19 05:57:22 -0800
committerDenis Kenzior <denkenz@gmail.com>2010-11-22 05:07:52 -0600
commit2d0cb921552f64f37296f7c422ef41781290fb6f (patch)
tree9eb50d58a893327d569a4ac76ff2c21f4e21604e /src/call-forwarding.c
parent4988741107adc2b0f89a2c391cd7fb08529b032a (diff)
downloadofono-2d0cb921552f64f37296f7c422ef41781290fb6f.tar.bz2
src: coding style fixes - rule M6
Diffstat (limited to 'src/call-forwarding.c')
-rw-r--r--src/call-forwarding.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/call-forwarding.c b/src/call-forwarding.c
index 928cda10..715ce02f 100644
--- a/src/call-forwarding.c
+++ b/src/call-forwarding.c
@@ -1112,7 +1112,7 @@ int ofono_call_forwarding_driver_register(const struct ofono_call_forwarding_dri
if (d->probe == NULL)
return -EINVAL;
- g_drivers = g_slist_prepend(g_drivers, (void *)d);
+ g_drivers = g_slist_prepend(g_drivers, (void *) d);
return 0;
}
@@ -1121,7 +1121,7 @@ void ofono_call_forwarding_driver_unregister(const struct ofono_call_forwarding_
{
DBG("driver: %p, name: %s", d, d->name);
- g_drivers = g_slist_remove(g_drivers, (void *)d);
+ g_drivers = g_slist_remove(g_drivers, (void *) d);
}
static void call_forwarding_unregister(struct ofono_atom *atom)