mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
[util] Fix a code-comment disagreement
And the comment was correct :P
This commit is contained in:
parent
8664a5b969
commit
fdba822809
1 changed files with 1 additions and 1 deletions
|
@ -121,9 +121,9 @@
|
|||
#define DARRAY_CLEAR(array) \
|
||||
do { \
|
||||
__auto_type ar = (array); \
|
||||
free (ar->a); \
|
||||
ar->size = 0; \
|
||||
if (ar->grow) { \
|
||||
free (ar->a); \
|
||||
ar->maxSize = 0; \
|
||||
ar->a = 0; \
|
||||
} \
|
||||
|
|
Loading…
Reference in a new issue