X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=epoch.c;h=6dbcfb34a5a8762608e99fe79f1a4f17475d6f8a;hb=a61eea6abdbd336c7a3364c170cce3de01421599;hp=904cc0d4b89db2307d137a474ab8f555ab67ea12;hpb=ad6ce07c44c8f76599d506d38cc3194e886e694a;p=git.git diff --git a/epoch.c b/epoch.c index 904cc0d4..6dbcfb34 100644 --- a/epoch.c +++ b/epoch.c @@ -28,7 +28,7 @@ static BN_CTX *context = NULL; static struct fraction *one = NULL; static struct fraction *zero = NULL; -static BN_CTX *get_BN_CTX() +static BN_CTX *get_BN_CTX(void) { if (!context) { context = BN_CTX_new(); @@ -36,7 +36,7 @@ static BN_CTX *get_BN_CTX() return context; } -static struct fraction *new_zero() +static struct fraction *new_zero(void) { struct fraction *result = xmalloc(sizeof(*result)); BN_init(&result->numerator); @@ -75,7 +75,7 @@ static struct fraction *init_fraction(struct fraction *fraction) return fraction; } -static struct fraction *get_one() +static struct fraction *get_one(void) { if (!one) { one = new_zero(); @@ -84,7 +84,7 @@ static struct fraction *get_one() return one; } -static struct fraction *get_zero() +static struct fraction *get_zero(void) { if (!zero) { zero = new_zero(); @@ -585,11 +585,9 @@ int sort_list_in_merge_order(struct commit_list *list, emitter_func emitter) for (; list; list = list->next) { struct commit *next = list->item; - if (!(next->object.flags & UNINTERESTING)) { - if (!(next->object.flags & DUPCHECK)) { - next->object.flags |= DUPCHECK; - commit_list_insert(list->item, &reversed); - } + if (!(next->object.flags & DUPCHECK)) { + next->object.flags |= DUPCHECK; + commit_list_insert(list->item, &reversed); } }