aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2016-07-04 09:18:49 -0700
committerChris Robinson <[email protected]>2016-07-04 10:26:46 -0700
commitf0cbcdc928b6a0615199dde56f3b7f0ac31cc6cb (patch)
treeb29066f3d18af4022a18a930accc82f1bd84b70b /include
parent80da138d7f78ddb5a91b5644001d2aa1da4f7a61 (diff)
Use al_malloc/al_free for the UIntMap array
Diffstat (limited to 'include')
-rw-r--r--include/uintmap.h2
1 files changed, 1 insertions, 1 deletions
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;