commit 54a51492ef519a9020d40aaab34893f1ae4be94e
parent fa302cf3f8c1cdf8a58ff4704b4252472bd092f4
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date: Mon, 16 Jan 2023 11:40:47 +0100
Forgot const
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/clap/factory/draft/preset-discovery.h b/include/clap/factory/draft/preset-discovery.h
@@ -74,11 +74,11 @@ enum clap_preset_discovery_flags {
typedef struct clap_plugin_id {
// The plugin ABI name, in lowercase.
// eg: "clap"
- char *abi;
+ const char *abi;
// The plugin ID, for example "com.u-he.Diva".
// If the ABI rely upon binary plugin ids, then they shall be hex encoded (lower case).
- char *id;
+ const char *id;
} clap_plugin_id_t;
// Receiver that receives the metadata for a single preset file.