1
0
mirror of https://github.com/elua/elua.git synced 2025-01-08 20:56:17 +08:00

Fix variable name in commentary

This commit is contained in:
Martin Guy 2011-03-15 05:16:42 +01:00
parent 9a3abb6b10
commit efbe36d4ed

View File

@ -12,7 +12,7 @@
// Macros for the dynamic size allocator
// Dynamic structure: pointer to next, pointer to prev
// First bit of pointer is 0 if block free, 1 if block taken
// Pointer must be multiplied by DYN_MIN_SIZE to get actual address
// Pointer must be multiplied by DYN_SIZE_MULT to get actual address
// There are two 'guards' (at the beginning and at the end)
#define DYN_SIZE_MULT 8
#define DYN_SIZE_MULT_SHIFT 3