diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2022-11-10 16:03:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-10 16:03:57 (GMT) |
commit | 73679b13ca38a25da878d13b0674961b8ea53eb5 (patch) | |
tree | a24e07ffaa6e59544fb52726e425fbba517a5de7 /Modules/zlibmodule.c | |
parent | 6dedf42527fddbed8ef61ef8d3f025bf3a373359 (diff) | |
download | cpython-73679b13ca38a25da878d13b0674961b8ea53eb5.zip cpython-73679b13ca38a25da878d13b0674961b8ea53eb5.tar.gz cpython-73679b13ca38a25da878d13b0674961b8ea53eb5.tar.bz2 |
gh-90110: Update the C-analyzer Tool (gh-99307)
Diffstat (limited to 'Modules/zlibmodule.c')
-rw-r--r-- | Modules/zlibmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/zlibmodule.c b/Modules/zlibmodule.c index 2a490ed..30c2515 100644 --- a/Modules/zlibmodule.c +++ b/Modules/zlibmodule.c @@ -1718,7 +1718,7 @@ ZlibDecompressor__new__(PyTypeObject *cls, PyObject *kwargs) { static char *keywords[] = {"wbits", "zdict", NULL}; - static char *format = "|iO:_ZlibDecompressor"; + static const char * const format = "|iO:_ZlibDecompressor"; int wbits = MAX_WBITS; PyObject *zdict = NULL; zlibstate *state = PyType_GetModuleState(cls); |