[gdm] local-display-factory: spacing clean up



commit 193046dbf37c5abad9af21f0a57743bb6015e413
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 612093d..0898faa 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;


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