diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-02-09 15:31:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-09 15:31:26 (GMT) |
commit | bfe4fd5f2e96e72eecb5b8a0c7df0ac1689f3b7e (patch) | |
tree | b0bdd00da587355830e8b18fbadc72054ae0ad0c /Python/context.c | |
parent | 5bb0005f9ff768ac443924b4bb26c3818ce8dc5a (diff) | |
download | cpython-bfe4fd5f2e96e72eecb5b8a0c7df0ac1689f3b7e.zip cpython-bfe4fd5f2e96e72eecb5b8a0c7df0ac1689f3b7e.tar.gz cpython-bfe4fd5f2e96e72eecb5b8a0c7df0ac1689f3b7e.tar.bz2 |
Fix some warnings produced by different compilers. (#5593)
Diffstat (limited to 'Python/context.c')
-rw-r--r-- | Python/context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/context.c b/Python/context.c index 2034a20..b727748 100644 --- a/Python/context.c +++ b/Python/context.c @@ -8,7 +8,7 @@ #define CONTEXT_FREELIST_MAXLEN 255 static PyContext *ctx_freelist = NULL; -static Py_ssize_t ctx_freelist_len = 0; +static int ctx_freelist_len = 0; #include "clinic/context.c.h" @@ -1177,7 +1177,7 @@ get_token_missing(void) int PyContext_ClearFreeList(void) { - Py_ssize_t size = ctx_freelist_len; + int size = ctx_freelist_len; while (ctx_freelist_len) { PyContext *ctx = ctx_freelist; ctx_freelist = (PyContext *)ctx->ctx_weakreflist; |