summaryrefslogtreecommitdiff
path: root/src/frames.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2007-11-28 12:01:40 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2007-11-28 12:01:40 +0000
commit99379d1a8a26c9b77f02f7ea7ec555abca26c624 (patch)
tree11c486b1d3cce29b2823a8d98d959ef72a93e221 /src/frames.c
parent0fbc1564ed0f6335f98b7269683f1ca5f068a830 (diff)
Chunkify allocations.
Diffstat (limited to 'src/frames.c')
-rw-r--r--src/frames.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frames.c b/src/frames.c
index 0eb810f..8165a6e 100644
--- a/src/frames.c
+++ b/src/frames.c
@@ -80,7 +80,7 @@ frames_add (Frames *frames,
if (f != NULL)
return;
- f = app_alloc (frames->app, sizeof (Frame));
+ f = app_perm_alloc (frames->app, sizeof (Frame));
f->ip = ip;
tmp = NULL;
if (function == NULL && object != NULL) {