diff --git a/src/main.c b/src/main.c
index 08393a9..fc50bbd 100644
--- a/src/main.c
+++ b/src/main.c
MPS_MULTIPLE,
} mps = MPS_OFF;
-static const char * const supported_options[] = {
+static const char *supported_options[] = {
"Name",
"Class",
"DiscoverableTimeout",
NULL
};
-static const char * const policy_options[] = {
+static const char *policy_options[] = {
"ReconnectUUIDs",
"ReconnectAttempts",
"ReconnectIntervals",
NULL
};
-static const char * const gatt_options[] = {
+static const char *gatt_options[] = {
"Cache",
NULL
};
static const struct group_table {
const char *name;
- const char * const *options;
+ const char **options;
} valid_groups[] = {
{ "General", supported_options },
{ "Policy", policy_options },
}
static void check_options(GKeyFile *config, const char *group,
- const char * const *options)
+ const char **options)
{
char **keys;
int i;