bindings: python: fix a warning
authorBartosz Golaszewski <bartekgola@gmail.com>
Wed, 6 Jun 2018 15:01:44 +0000 (17:01 +0200)
committerBartosz Golaszewski <bartekgola@gmail.com>
Thu, 7 Jun 2018 07:27:54 +0000 (09:27 +0200)
On some architectures we get a 'comparison between signed and unsigned
integer' warning when building python bindings. Fix it by changing the
type of the variable used for offset to unsigned int.

Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
bindings/python/gpiodmodule.c

index d55e867f359edc102dad0bd0d6bf7ed417c154dc..88d90bfa5f9e8c1ac335e510950bb5652237199e 100644 (file)
@@ -1562,7 +1562,7 @@ gpiod_Chip_get_all_lines(gpiod_ChipObject *self)
        struct gpiod_line_bulk bulk;
        gpiod_LineObject *line_obj;
        struct gpiod_line *line;
-       Py_ssize_t offset;
+       unsigned int offset;
        PyObject *list;
        int rv;