summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-06-27 19:12:03 +0200
committerLennart Poettering <lennart@poettering.net>2008-06-27 19:12:03 +0200
commit3db7dcb9628bc4e281125826e09887763cc1bb2c (patch)
tree629c6266afe169956d64aacaa2cef24f8a31dc24 /src
parentc0f97aa580a48d790361258d44775828e2eff134 (diff)
save some memory by increasing the dynamic array at a slower rate
Diffstat (limited to 'src')
-rw-r--r--src/pulsecore/dynarray.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pulsecore/dynarray.c b/src/pulsecore/dynarray.c
index bc7716db..69d835af 100644
--- a/src/pulsecore/dynarray.c
+++ b/src/pulsecore/dynarray.c
@@ -31,8 +31,8 @@
#include "dynarray.h"
-/* If the array becomes to small, increase its size by 100 entries */
-#define INCREASE_BY 100
+/* If the array becomes to small, increase its size by 25 entries */
+#define INCREASE_BY 25
struct pa_dynarray {
void **data;