diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2022-09-22 21:09:49 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2022-09-22 21:09:49 (GMT) |
commit | 430aad874900f525c67a5aa5de9e6012a64ff603 (patch) | |
tree | caed7f7ee23290e44ca06c56baa7e9d7c60dff6b /plugins/pychrysalide/analysis/contents | |
parent | 735effa6ee2ebd22bf6421da71ed9aa541980130 (diff) |
Fix runtime Python warnings for all # variants of formats.
Diffstat (limited to 'plugins/pychrysalide/analysis/contents')
-rw-r--r-- | plugins/pychrysalide/analysis/contents/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pychrysalide/analysis/contents/memory.c b/plugins/pychrysalide/analysis/contents/memory.c index 4782445..e0ab267 100644 --- a/plugins/pychrysalide/analysis/contents/memory.c +++ b/plugins/pychrysalide/analysis/contents/memory.c @@ -61,7 +61,7 @@ static PyObject *py_memory_content_new(PyTypeObject *type, PyObject *args, PyObj { PyObject *result; /* Instance à retourner */ const char *data; /* Tampon interne de Python */ - int length; /* Taille utilisé de ce tampon */ + Py_ssize_t length; /* Taille utilisé de ce tampon */ int ret; /* Bilan de lecture des args. */ GBinContent *content; /* Version GLib du contenu */ |