From efbe36d4ed3d1698a5ba1567e507b6ce874730e0 Mon Sep 17 00:00:00 2001 From: Martin Guy Date: Tue, 15 Mar 2011 05:16:42 +0100 Subject: [PATCH] Fix variable name in commentary --- src/salloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/salloc.c b/src/salloc.c index 7ba78f34..3a15c335 100644 --- a/src/salloc.c +++ b/src/salloc.c @@ -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