aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2017-05-10 14:36:28 +0200
committerAleksander Morgado <aleksander@aleksander.es>2017-05-10 14:36:28 +0200
commitd41d717112e6a183a0df510c210e80a86fc11060 (patch)
tree547f46ea50b86358a96276a19bae16eafbd09bc9
parent1ab98b9e8cd327f55529ec43be3cfb0fe21d11a0 (diff)
ublox: align property values in g_object_new()
-rw-r--r--plugins/ublox/mm-plugin-ublox.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/ublox/mm-plugin-ublox.c b/plugins/ublox/mm-plugin-ublox.c
index 0ca74d90..a1592d51 100644
--- a/plugins/ublox/mm-plugin-ublox.c
+++ b/plugins/ublox/mm-plugin-ublox.c
@@ -69,12 +69,12 @@ mm_plugin_create (void)
static const gchar *vendor_strings[] = { "u-blox", NULL };
return MM_PLUGIN (g_object_new (MM_TYPE_PLUGIN_UBLOX,
- MM_PLUGIN_NAME, "u-blox",
- MM_PLUGIN_ALLOWED_SUBSYSTEMS, subsystems,
- MM_PLUGIN_ALLOWED_VENDOR_IDS, vendor_ids,
+ MM_PLUGIN_NAME, "u-blox",
+ MM_PLUGIN_ALLOWED_SUBSYSTEMS, subsystems,
+ MM_PLUGIN_ALLOWED_VENDOR_IDS, vendor_ids,
MM_PLUGIN_ALLOWED_VENDOR_STRINGS, vendor_strings,
- MM_PLUGIN_ALLOWED_AT, TRUE,
- MM_PLUGIN_CUSTOM_AT_PROBE, custom_at_probe,
+ MM_PLUGIN_ALLOWED_AT, TRUE,
+ MM_PLUGIN_CUSTOM_AT_PROBE, custom_at_probe,
NULL));
}