[gdm/gnome-3-16] local-display-factory: spacing clean up



commit 54723ab99c25a172ae6c0ca30bf7c04697833f6b
Author: Ray Strode <rstrode redhat com>
Date:   Thu Sep 10 09:36:54 2015 -0400

    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

 daemon/gdm-local-display-factory.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/daemon/gdm-local-display-factory.c b/daemon/gdm-local-display-factory.c
index af15617..e902c3d 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;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]