From: Victor Stinner Date: Wed, 18 Mar 2015 15:05:18 +0000 (+0100) Subject: _tracemalloc.c: Fix typo X-Git-Tag: v3.5.0a3~141^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=444f124fcf5e275ee4dd040e4a75f790c2b4166f;p=thirdparty%2FPython%2Fcpython.git _tracemalloc.c: Fix typo --- diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index bbe7259959a0..409f4dbdd501 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -60,7 +60,7 @@ static PyThread_type_lock tables_lock; /* Pack the frame_t structure to reduce the memory footprint on 64-bit architectures: 12 bytes instead of 16. This optimization might produce SIGBUS on architectures not supporting unaligned memory accesses (64-bit - IPS CPU?): on such architecture, the structure must not be packed. */ + MIPS CPU?): on such architecture, the structure must not be packed. */ typedef struct #ifdef __GNUC__ __attribute__((packed))