Fix a number of other style inconsistencies met along the way

This commit is contained in:
Mike Gelfand
2017-04-30 19:30:03 +03:00
parent a762c770f2
commit fbd8d4c79f
35 changed files with 91 additions and 84 deletions

View File

@@ -96,7 +96,7 @@ void tr_ptrArrayErase(tr_ptrArray* t, int begin, int end)
memmove(t->items + begin, t->items + end, sizeof(void*) * (t->n_items - end));
t->n_items -= (end - begin);
t->n_items -= end - begin;
}
/**