ta: fix comment

If this function could return the input value (i.e. the == case was
correct), then macros like MP_GROW_ARRAY would have been incorrect. The
implementation was correct though, so there's no bug.
This commit is contained in:
wm4 2014-02-23 16:51:00 +01:00
parent 7dae316d50
commit 82648ff229
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ size_t ta_calc_array_size(size_t element_size, size_t count)
// This is used when an array has to be enlarged for appending new elements.
// Return a "good" size for the new array (in number of elements). This returns
// a value >= nextidx, unless the calculation overflows, in which case SIZE_MAX
// a value > nextidx, unless the calculation overflows, in which case SIZE_MAX
// is returned.
size_t ta_calc_prealloc_elems(size_t nextidx)
{