summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2015-09-10 09:36:54 -0400
committerRay Strode <rstrode@redhat.com>2015-09-10 09:57:20 -0400
commit193046dbf37c5abad9af21f0a57743bb6015e413 (patch)
treea6f669ec707aa5be577f3822bee49e05dc1f4352
parentb56946d6e4cfbb383b8a2b9d1762be918a8694a5 (diff)
downloadgdm-193046dbf37c5abad9af21f0a57743bb6015e413.tar.gz
local-display-factory: spacing clean up
The function declaration for gdm_local_display_factory_sync_seats put the return type on the same line as the function name. That doesn't follow the GDM codebase's style. This commit moves the return type to its own line. https://bugzilla.gnome.org/show_bug.cgi?id=749418
-rw-r--r--daemon/gdm-local-display-factory.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/daemon/gdm-local-display-factory.c b/daemon/gdm-local-display-factory.c
index 612093d6..0898faaa 100644
--- a/daemon/gdm-local-display-factory.c
+++ b/daemon/gdm-local-display-factory.c
@@ -414,7 +414,8 @@ delete_display (GdmLocalDisplayFactory *factory,
gdm_display_store_foreach_remove (store, lookup_by_seat_id, (gpointer) seat_id);
}
-static gboolean gdm_local_display_factory_sync_seats (GdmLocalDisplayFactory *factory)
+static gboolean
+gdm_local_display_factory_sync_seats (GdmLocalDisplayFactory *factory)
{
GError *error = NULL;
GVariant *result;