]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-33387: Fix compiler warning in frame_block_unwind() (GH-18099)
authorVictor Stinner <vstinner@python.org>
Tue, 21 Jan 2020 11:47:29 +0000 (12:47 +0100)
committerGitHub <noreply@github.com>
Tue, 21 Jan 2020 11:47:29 +0000 (12:47 +0100)
commit629023c05be24fa2f01c914c739aaa5a61a0304c
tree7b5adb90a28b80e663cc8661297ce04f0bdc31bb
parenteab3b3f1c60afecfb4db3c3619109684cb04bd60
bpo-33387: Fix compiler warning in frame_block_unwind() (GH-18099)

Replace int with intptr_t to fix the warning:

    objects\frameobject.c(341): warning C4244: 'initializing':
    conversion from '__int64' to 'int', possible loss of data
Objects/frameobject.c