date.c: fix printout of timezone offsets that aren't exact hours
[gitweb.git] / rev-list.c
index 1c797d24a91b44994dc11180dd61c3ecf8f93349..77bfc29db1aad08ba9d7d87ce08d33d4a88e74e3 100644 (file)
@@ -16,7 +16,7 @@ int main(int argc, char **argv)
 
        commit_list_insert(commit, &list);
        do {
-               struct commit *commit = pop_most_recent_commit(&list);
+               struct commit *commit = pop_most_recent_commit(&list, 0x1);
                printf("%s\n", sha1_to_hex(commit->object.sha1));
        } while (list);
        return 0;