]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
_tracemalloc.c: Fix typo
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 18 Mar 2015 15:05:18 +0000 (16:05 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Wed, 18 Mar 2015 15:05:18 +0000 (16:05 +0100)
Modules/_tracemalloc.c

index bbe7259959a084d3e242cb15a5cc805c661fe476..409f4dbdd501eaa72c56ee668d9215819c4efd62 100644 (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))