2022-09-01 10:50:56

by Bastien Nocera

[permalink] [raw]
Subject: [PATCH BlueZ v6 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 11fde03b8..dc96b9718 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -3508,7 +3508,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;
@@ -3876,7 +3876,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