From 8cd29225d10edac961fa57d8f2b9e9b48190fb0f Mon Sep 17 00:00:00 2001 From: Quinn Date: Sat, 23 Aug 2025 23:12:55 +0200 Subject: [PATCH] remove outdated TODO comments --- src/dat/nbt.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/dat/nbt.c b/src/dat/nbt.c index c0d3c42..8b8f3df 100644 --- a/src/dat/nbt.c +++ b/src/dat/nbt.c @@ -129,7 +129,6 @@ MALLOC static void *nbt_procarr(const u8 *restrict buf, i32 nmem, uint size) { return ptr; } -// TODO: not actually doing anything /* readies the output data for export, returns the new buffer position, or `NULL` upon an error (may be out of bounds) */ const u8 *nbt_proctag(const u8 *restrict buf, u16 slen, void *restrict out) { const u8 *ptr = buf + 3 + slen; @@ -154,7 +153,7 @@ const u8 *nbt_proctag(const u8 *restrict buf, u16 slen, void *restrict out) { return NULL; } - return ptr; // TODO: return end of array + return ptr; } struct nbt_procdat nbt_initproc(struct nbt_path const *restrict pats, uint npats) {