_tracemalloc.c: Fix typo

This commit is contained in:
Victor Stinner 2015-03-18 16:05:18 +01:00
parent 376658fa13
commit 444f124fcf
1 changed files with 1 additions and 1 deletions

View File

@ -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))