core: Micro indentation fix
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Mon, 2 Aug 2010 15:08:10 +0000 (18:08 +0300)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Mon, 2 Aug 2010 15:08:10 +0000 (18:08 +0300)
src/rygel/rygel-http-byte-seek.vala
src/rygel/rygel-http-time-seek.vala

index 3133b6e..ddd4c69 100644 (file)
@@ -74,10 +74,7 @@ internal class Rygel.HTTPByteSeek : Rygel.HTTPSeek {
             }
         }
 
-        base (request.msg,
-              start,
-              stop,
-              total_length);
+        base (request.msg, start, stop, total_length);
     }
 
     public static bool needed (HTTPGet request) {
index d190541..8a101bf 100644 (file)
@@ -75,10 +75,7 @@ internal class Rygel.HTTPTimeSeek : Rygel.HTTPSeek {
             }
         }
 
-        base (request.msg,
-              start,
-              stop,
-              duration);
+        base (request.msg, start, stop, duration);
     }
 
     public static bool needed (HTTPGet request) {