summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2015-09-10 09:36:54 -0400
committerFederico Mena Quintero <federico@gnome.org>2015-09-15 13:40:39 -0500
commit54723ab99c25a172ae6c0ca30bf7c04697833f6b (patch)
tree75417a76a9184c92a14c9a25fe3deba1464cd458
parent9553835a34f54c868fae9f292545ddfd6e77660e (diff)
downloadgdm-54723ab99c25a172ae6c0ca30bf7c04697833f6b.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 af15617f..e902c3d1 100644
--- a/daemon/gdm-local-display-factory.c
+++ b/daemon/gdm-local-display-factory.c
@@ -445,7 +445,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;