media-export: Coding-style fix
authorJens Georg <mail@jensge.org>
Fri, 23 Jul 2010 19:28:55 +0000 (22:28 +0300)
committerJens Georg <mail@jensge.org>
Fri, 23 Jul 2010 19:43:59 +0000 (22:43 +0300)
src/plugins/media-export/rygel-media-export-dbus-service.vala

index 5dade8f..e2aa892 100644 (file)
@@ -29,9 +29,10 @@ public class Rygel.MediaExport.DBusService : Object {
         this.root_container = root_container;
 
         try {
-            var conn = DBus.Bus.get (DBus.BusType. SESSION);
-            if (conn != null)
-                conn.register_object (RYGEL_MEDIA_EXPORT_PATH, this);
+            var connection = DBus.Bus.get (DBus.BusType. SESSION);
+            if (connection != null) {
+                connection.register_object (RYGEL_MEDIA_EXPORT_PATH, this);
+            }
         } catch (DBus.Error err) {
             warning (_("Failed to attach to DBus session bus: %s"),
                      err.message);