diff options
Diffstat (limited to 'docs/application/buffer.md')
| -rw-r--r-- | docs/application/buffer.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/application/buffer.md b/docs/application/buffer.md index 881fb27..ea30458 100644 --- a/docs/application/buffer.md +++ b/docs/application/buffer.md @@ -6,8 +6,8 @@ ```c typedef struct _kpl_buffer { - KPL_POOL_HEADER(struct _kpl_buffer); - uint64_t byte_length; + KPL_ALLOC_HEADER(struct _kpl_buffer); + size_t byte_length; kpl_interface *interface; uint8_t bytes[]; } kpl_buffer; |
