summaryrefslogtreecommitdiff
path: root/shared-bindings/_bleio/UUID.c
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2020-09-03 16:34:56 -0700
committerScott Shawcroft <scott@tannewt.org>2020-09-03 16:34:56 -0700
commit96cf60fbbdc26d5ed3274a43ebbaab7feca797e1 (patch)
tree855371ca80ea386e004387ddbd69f372670e9109 /shared-bindings/_bleio/UUID.c
parent0b94638aeb667f2a417d859487083241a5749128 (diff)
parent5d17d6402d57a74e20ea332da6a31be65ec0e2ca (diff)
Merge remote-tracking branch 'adafruit/main' into native_wifi
Diffstat (limited to 'shared-bindings/_bleio/UUID.c')
-rw-r--r--shared-bindings/_bleio/UUID.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/_bleio/UUID.c b/shared-bindings/_bleio/UUID.c
index 18eda0b33..fe045f385 100644
--- a/shared-bindings/_bleio/UUID.c
+++ b/shared-bindings/_bleio/UUID.c
@@ -283,7 +283,7 @@ void bleio_uuid_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t
mp_printf(print, "UUID(0x%04x)", common_hal_bleio_uuid_get_uuid16(self));
} else {
uint8_t uuid128[16];
- (void) common_hal_bleio_uuid_get_uuid128(self, uuid128);
+ common_hal_bleio_uuid_get_uuid128(self, uuid128);
mp_printf(print, "UUID('"
"%02x%02x%02x%02x-"
"%02x%02x-"