summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Sotoudeh <matthew@masot.net>2024-05-16 04:08:05 -0700
committerMatthew Sotoudeh <matthew@masot.net>2024-05-16 04:08:05 -0700
commit06612e93bd5c115ae878c198594c4855edabd331 (patch)
tree103c279f2340b6b1540245c2d7b9bc2b9611a517
parentbe985883c11087e1d8a5f3d973839869dc045407 (diff)
remove misleading comment
-rw-r--r--magic_buddy.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/magic_buddy.c b/magic_buddy.c
index b172677..93e2ef3 100644
--- a/magic_buddy.c
+++ b/magic_buddy.c
@@ -6,11 +6,9 @@
static uint8_t MAGIC[MAGIC_COOKIE_BYTES];
struct free_list {
- uint8_t magic[MAGIC_COOKIE_BYTES];
struct free_list *next;
struct free_list **pprev;
-
- // only needed for the 'advanced features' (reserve and reallocate)
+ uint8_t magic[MAGIC_COOKIE_BYTES];
uint8_t logsize;
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback