Browse Source

Fix useless whitespace

1.0.0
Georg Hopp 10 years ago
parent
commit
d40d9da850
  1. 2
      src/dynarray/dynarray.c

2
src/dynarray/dynarray.c

@ -30,7 +30,7 @@ inline
void
_darrResize(TR_Dynarray this, size_t index)
{
if (index > (long)this->size - 1) {
if (index > (long)this->size - 1) {
void * new_data = TR_calloc(index + 1, sizeof(void *));
memcpy(new_data, this->data, this->size * sizeof(void *));
TR_MEM_FREE(this->data);

Loading…
Cancel
Save