From f0cbcdc928b6a0615199dde56f3b7f0ac31cc6cb Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 4 Jul 2016 09:18:49 -0700 Subject: Use al_malloc/al_free for the UIntMap array --- include/uintmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/uintmap.h b/include/uintmap.h index c41c20ad..e7c3f93d 100644 --- a/include/uintmap.h +++ b/include/uintmap.h @@ -14,7 +14,7 @@ typedef struct UIntMap { ALvoid *value; } *array; ALsizei size; - ALsizei maxsize; + ALsizei capacity; ALsizei limit; RWLock lock; } UIntMap; -- cgit v1.2.3