From 50264a311dca215f6adc1b312dcd22c5c7a545d6 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Thu, 15 Apr 2010 15:01:05 -0500 Subject: [PATCH] Style: Proper indentation --- src/sim.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/sim.c b/src/sim.c index 47df9a29..bf28f1e5 100644 --- a/src/sim.c +++ b/src/sim.c @@ -1028,9 +1028,9 @@ static void sim_imsi_cb(const struct ofono_error *error, const char *imsi, sim->imsi = g_strdup(imsi); ofono_dbus_signal_property_changed(conn, path, - OFONO_SIM_MANAGER_INTERFACE, - "SubscriberIdentity", - DBUS_TYPE_STRING, &sim->imsi); + OFONO_SIM_MANAGER_INTERFACE, + "SubscriberIdentity", + DBUS_TYPE_STRING, &sim->imsi); /* Read CPHS-support bits, this is still part of the SIM * initialisation but no order is specified for it. */ @@ -1818,13 +1818,14 @@ const unsigned char *ofono_sim_get_cphs_service_table(struct ofono_sim *sim) static void sim_inserted_update(struct ofono_sim *sim) { - dbus_bool_t present = sim->state != OFONO_SIM_STATE_NOT_PRESENT; DBusConnection *conn = ofono_dbus_get_connection(); const char *path = __ofono_atom_get_path(sim->atom); + dbus_bool_t present = sim->state != OFONO_SIM_STATE_NOT_PRESENT; ofono_dbus_signal_property_changed(conn, path, - OFONO_SIM_MANAGER_INTERFACE, "Present", - DBUS_TYPE_BOOLEAN, &present); + OFONO_SIM_MANAGER_INTERFACE, + "Present", + DBUS_TYPE_BOOLEAN, &present); } static void sim_free_state(struct ofono_sim *sim)