From aca8873bb841860c0b62d36afe42501eb4505199 Mon Sep 17 00:00:00 2001 From: Yonatan Goldschmidt Date: Sun, 1 Dec 2019 01:07:58 +0200 Subject: [PATCH] extmod/modbluetooth: Fix func prototype, empty args should be (void). This fixes a -Wstrict-prototypes error. --- extmod/modbluetooth.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extmod/modbluetooth.h b/extmod/modbluetooth.h index fbae67bc45..074f53b978 100644 --- a/extmod/modbluetooth.h +++ b/extmod/modbluetooth.h @@ -180,7 +180,7 @@ int mp_bluetooth_gatts_register_service_begin(bool append); // The value_handles won't be valid until after mp_bluetooth_register_service_end is called. int mp_bluetooth_gatts_register_service(mp_obj_bluetooth_uuid_t *service_uuid, mp_obj_bluetooth_uuid_t **characteristic_uuids, uint8_t *characteristic_flags, mp_obj_bluetooth_uuid_t **descriptor_uuids, uint8_t *descriptor_flags, uint8_t *num_descriptors, uint16_t *handles, size_t num_characteristics); // Register any queued services. -int mp_bluetooth_gatts_register_service_end(); +int mp_bluetooth_gatts_register_service_end(void); // Read the value from the local gatts db (likely this has been written by a central). int mp_bluetooth_gatts_read(uint16_t value_handle, uint8_t **value, size_t *value_len);