From 9c2fb727cd1fbb2496c8e8d40bf360c4b71f6d6f Mon Sep 17 00:00:00 2001 From: David Robillard <d@drobilla.net> Date: Sun, 6 Jul 2008 17:10:04 +0000 Subject: Rename slv2_plugin_get_port_range to slv2_plugin_get_port_ranges_float (avoid future binary compatibility issues if a type-generic one is needed later). git-svn-id: http://svn.drobilla.net/lad/slv2@1279 a436a847-0d15-0410-975c-d299462d15a1 --- hosts/lv2_jack_host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hosts') diff --git a/hosts/lv2_jack_host.c b/hosts/lv2_jack_host.c index 2368352..08ae29d 100644 --- a/hosts/lv2_jack_host.c +++ b/hosts/lv2_jack_host.c @@ -192,7 +192,7 @@ main(int argc, char** argv) host.ports = calloc((size_t)host.num_ports, sizeof(struct Port)); float* default_values = calloc(slv2_plugin_get_num_ports(host.plugin), sizeof(float)); - slv2_plugin_get_port_ranges(host.plugin, NULL, NULL, default_values); + slv2_plugin_get_port_ranges_float(host.plugin, NULL, NULL, default_values); for (uint32_t i=0; i < host.num_ports; ++i) create_port(&host, i, default_values[i]); -- cgit v1.2.1