core: make arguments signed
authorJens Georg <mail@jensge.org>
Mon, 21 Sep 2009 12:07:39 +0000 (14:07 +0200)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Mon, 21 Sep 2009 14:01:56 +0000 (17:01 +0300)
This is to allow to get all children (-1, -1)

src/rygel/rygel-media-db.vala

index 864e0ae..fcedad6 100644 (file)
@@ -879,10 +879,9 @@ public class Rygel.MediaDB : Object {
         return exists;
     }
 
-
     public Gee.ArrayList<MediaObject> get_children (string container_id,
-                                                      uint offset,
-                                                      uint max_count) {
+                                                      long offset,
+                                                      long max_count) {
         Statement statement;
         Gee.ArrayList<MediaObject> children =
                                             new Gee.ArrayList<MediaObject> ();