diff options
| author | Dan Halbert <halbert@halwitz.org> | 2019-02-15 18:55:10 -0500 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2019-02-15 18:55:10 -0500 |
| commit | a345ef28f2278dd53a33d96861c0c7d3fad6fbbe (patch) | |
| tree | b95a2a1d8010252d82a4ddacca7853d294e7849a /shared-bindings/bleio/UUID.c | |
| parent | cf545cd477fecc6059f832738ade05c37a5dc9d2 (diff) | |
finish Makefile refactoring; nrf builds work
Diffstat (limited to 'shared-bindings/bleio/UUID.c')
| -rw-r--r-- | shared-bindings/bleio/UUID.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/bleio/UUID.c b/shared-bindings/bleio/UUID.c index 8b868a1ae..c6ad9e626 100644 --- a/shared-bindings/bleio/UUID.c +++ b/shared-bindings/bleio/UUID.c @@ -79,7 +79,7 @@ STATIC mp_obj_t bleio_uuid_make_new(const mp_obj_type_t *type, size_t n_args, co len == 36 && chars[8] == '-' && chars[13] == '-' && chars[18] == '-' && chars[23] == '-'; if (good_uuid) { size_t hex_idx = 0; - for (int i = 0; i < len; i++) { + for (size_t i = 0; i < len; i++) { if (unichar_isxdigit(chars[i])) { hex[hex_idx] = chars[i]; hex_idx++; |
