diff options
Diffstat (limited to 'Objects/obmalloc.c')
-rw-r--r-- | Objects/obmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index 14f9e25..22481ad 100644 --- a/Objects/obmalloc.c +++ b/Objects/obmalloc.c @@ -881,7 +881,7 @@ PyObject_Free(void *p) #undef DEADBYTE #undef FORBIDDENBYTE #define CLEANBYTE 0xCB /* clean (newly allocated) memory */ -#define DEADBYTE 0xDB /* deed (newly freed) memory */ +#define DEADBYTE 0xDB /* dead (newly freed) memory */ #define FORBIDDENBYTE 0xFB /* untouchable bytes at each end of a block */ static ulong serialno = 0; /* incremented on each debug {m,re}alloc */ |