diff options
Diffstat (limited to 'giscanner/annotationparser.py')
-rw-r--r-- | giscanner/annotationparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/annotationparser.py b/giscanner/annotationparser.py index c642d56e..9e4340fa 100644 --- a/giscanner/annotationparser.py +++ b/giscanner/annotationparser.py @@ -783,7 +783,7 @@ class AnnotationApplier(object): self._guess_direction(node) == PARAM_DIRECTION_IN and element_type is None): # FIXME: unsigned char/guchar should be uint8 - container_type.element_type = Type('int8') + container_type.element_type = Type('gint8') container_type.size = array_values.get(OPT_ARRAY_FIXED_SIZE) return container_type |