summaryrefslogtreecommitdiff
path: root/extmod/modbluetooth.h
diff options
context:
space:
mode:
Diffstat (limited to 'extmod/modbluetooth.h')
-rw-r--r--extmod/modbluetooth.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/extmod/modbluetooth.h b/extmod/modbluetooth.h
index 630a27052..6a087c8e2 100644
--- a/extmod/modbluetooth.h
+++ b/extmod/modbluetooth.h
@@ -498,11 +498,11 @@ typedef struct {
typedef mp_map_t *mp_gatts_db_t;
-STATIC inline void mp_bluetooth_gatts_db_create(mp_gatts_db_t *db) {
+static inline void mp_bluetooth_gatts_db_create(mp_gatts_db_t *db) {
*db = m_new(mp_map_t, 1);
}
-STATIC inline void mp_bluetooth_gatts_db_reset(mp_gatts_db_t db) {
+static inline void mp_bluetooth_gatts_db_reset(mp_gatts_db_t db) {
mp_map_init(db, 0);
}