rev-list: allow -<n> as shorthand for --max-count=<n>
[git.git] / object.c
index 427e14c..1577f74 100644 (file)
--- a/object.c
+++ b/object.c
@@ -1,8 +1,8 @@
+#include "cache.h"
 #include "object.h"
 #include "blob.h"
 #include "tree.h"
 #include "commit.h"
-#include "cache.h"
 #include "tag.h"
 
 struct object **objs;
@@ -82,7 +82,12 @@ static int compare_object_pointers(const void *a, const void *b)
 {
        const struct object * const *pa = a;
        const struct object * const *pb = b;
-       return *pa - *pb;
+       if (*pa == *pb)
+               return 0;
+       else if (*pa < *pb)
+               return -1;
+       else
+               return 1;
 }
 
 void set_object_refs(struct object *obj, struct object_refs *refs)