diff options
Diffstat (limited to 'plugins/yaml')
| -rw-r--r-- | plugins/yaml/python/reader.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/plugins/yaml/python/reader.c b/plugins/yaml/python/reader.c index f80623f..74fd2b3 100644 --- a/plugins/yaml/python/reader.c +++ b/plugins/yaml/python/reader.c @@ -73,7 +73,7 @@ static PyObject *py_yaml_reader_new_from_content(PyObject *self, PyObject *args)  {      PyObject *result;                       /* Instance à retourner        */      const char *content;                    /* Contenu brut au format Yaml */ -    int length;                             /* Taille de ce contenu        */ +    Py_ssize_t length;                      /* Taille de ce contenu        */      int ret;                                /* Bilan de lecture des args.  */      GYamlReader *reader;                    /* Création GLib à transmettre */ | 
