commit f20569e7317168365fe5c537092b231939c79435
parent 27b7af0bebf4816d6286fa969d746abad05e89f2
Author: mnkisala <mnkisala@gmail.com>
Date: Mon, 31 Oct 2022 13:48:28 +0100
fix: make features on plugin_descriptor_t const
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/clap/plugin.h b/include/clap/plugin.h
@@ -27,7 +27,7 @@ typedef struct clap_plugin_descriptor {
// They can be matched by the host indexer and used to classify the plugin.
// The array of pointers must be null terminated.
// For some standard features see plugin-features.h
- const char **features;
+ const char *const *features;
} clap_plugin_descriptor_t;
typedef struct clap_plugin {