aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/procqueue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/procqueue.c b/src/procqueue.c
index 5a75296..78dee4d 100644
--- a/src/procqueue.c
+++ b/src/procqueue.c
@@ -174,7 +174,7 @@ osmo_gapk_pq_prepare(struct osmo_gapk_pq *pq)
buf_size = VAR_BUF_SIZE;
/* Allocate memory for an output buffer */
- item->buf = talloc_size(item, buf_size);
+ item->buf = talloc_named_const(item, buf_size, ".buffer");
if (!item->buf)
return -ENOMEM;
}