projects
/
qemu-gpiodev
/
libgpiod.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e421f0d
)
bindings: python: fix a warning
author
Bartosz Golaszewski
<bartekgola@gmail.com>
Wed, 6 Jun 2018 15:01:44 +0000
(17:01 +0200)
committer
Bartosz 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
patch
|
blob
|
history
diff --git
a/bindings/python/gpiodmodule.c
b/bindings/python/gpiodmodule.c
index d55e867f359edc102dad0bd0d6bf7ed417c154dc..88d90bfa5f9e8c1ac335e510950bb5652237199e 100644
(file)
--- a/
bindings/python/gpiodmodule.c
+++ b/
bindings/python/gpiodmodule.c
@@
-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 in
t offset;
PyObject *list;
int rv;