diff options
Diffstat (limited to 'docs/application/queue.md')
| -rw-r--r-- | docs/application/queue.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/application/queue.md b/docs/application/queue.md index 5e8ae15..2807ce9 100644 --- a/docs/application/queue.md +++ b/docs/application/queue.md @@ -11,8 +11,8 @@ typedef struct _kpl_queue_item { } kpl_queue_item; typedef struct _kpl_queue { - KPL_POOL_HEADER(strcut _kpl_queue); - uint64_t length; + KPL_ALLOC_HEADER(struct _kpl_queue); + size_t item_length; kpl_interface *interface; kpl_pool_any *head, *tail; } kpl_queue; |
