diff options
Diffstat (limited to 'utils')
-rw-r--r-- | utils/lv2_inspect.c | 6 | ||||
-rw-r--r-- | utils/lv2_list.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/utils/lv2_inspect.c b/utils/lv2_inspect.c index 077aefe..31dd2f9 100644 --- a/utils/lv2_inspect.c +++ b/utils/lv2_inspect.c @@ -22,7 +22,7 @@ void -print_port(SLV2Plugin* p, uint32_t index) +print_port(SLV2Plugin p, uint32_t index) { SLV2PortID id = slv2_port_by_index(index); @@ -76,7 +76,7 @@ print_port(SLV2Plugin* p, uint32_t index) void -print_plugin(SLV2Plugin* p) +print_plugin(SLV2Plugin p) { char* str = NULL; @@ -130,7 +130,7 @@ main(int argc, char** argv) SLV2Plugins plugins = slv2_plugins_new(); slv2_plugins_load_all(plugins); - SLV2Plugin* p = slv2_plugins_get_by_uri(plugins, argv[1]); + SLV2Plugin p = slv2_plugins_get_by_uri(plugins, argv[1]); if (!p) { fprintf(stderr, "Plugin not found.\n"); diff --git a/utils/lv2_list.c b/utils/lv2_list.c index a1966fd..c8e430d 100644 --- a/utils/lv2_list.c +++ b/utils/lv2_list.c @@ -24,7 +24,7 @@ void list_plugins(SLV2Plugins list) { for (unsigned i=0; i < slv2_plugins_size(list); ++i) { - const SLV2Plugin* const p = slv2_plugins_get_at(list, i); + SLV2Plugin p = slv2_plugins_get_at(list, i); printf("%s\n", slv2_plugin_get_uri(p)); } } |