From 3a9cf2508dc7341a6d8ff4b8174064600d704994 Mon Sep 17 00:00:00 2001 From: nodist Date: Sun, 21 Jun 2026 11:51:41 -0400 Subject: update memory objs --- docs/application/buffer.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/application/buffer.md') diff --git a/docs/application/buffer.md b/docs/application/buffer.md index 4580fec..881fb27 100644 --- a/docs/application/buffer.md +++ b/docs/application/buffer.md @@ -6,8 +6,8 @@ ```c typedef struct _kpl_buffer { - KPL_POOL_HEADER(_kpl_buffer); - uint32_t byte_length; + KPL_POOL_HEADER(struct _kpl_buffer); + uint64_t byte_length; kpl_interface *interface; uint8_t bytes[]; } kpl_buffer; -- cgit v1.2.3