2022-08-31 11:40:57

by Bastien Nocera

[permalink] [raw]
Subject: [PATCH BlueZ v5 5/6] adapter: Fix typo in function name

---
src/adapter.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/adapter.c b/src/adapter.c
index 2e9e321e8..c4d6ca2d4 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -3464,7 +3464,7 @@ static gboolean property_get_experimental(const GDBusPropertyTable *property,
return TRUE;
}

-static gboolean property_experimental_exits(const GDBusPropertyTable *property,
+static gboolean property_experimental_exists(const GDBusPropertyTable *property,
void *data)
{
struct btd_adapter *adapter = data;
@@ -3832,7 +3832,7 @@ static const GDBusPropertyTable adapter_properties[] = {
property_exists_modalias },
{ "Roles", "as", property_get_roles },
{ "ExperimentalFeatures", "as", property_get_experimental, NULL,
- property_experimental_exits },
+ property_experimental_exists },
{ }
};

--
2.37.2