diff options
author | David Robillard <d@drobilla.net> | 2007-08-07 23:46:09 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-08-07 23:46:09 +0000 |
commit | f95cf059a72e6185c4d72696e0620a673c3683cd (patch) | |
tree | 15893a57cb2c5765e2b04043eb73171ddea87982 /utils | |
parent | a3ed37433cd283109b2593c7f47421e9e61327c5 (diff) | |
download | lilv-f95cf059a72e6185c4d72696e0620a673c3683cd.tar.gz lilv-f95cf059a72e6185c4d72696e0620a673c3683cd.tar.bz2 lilv-f95cf059a72e6185c4d72696e0620a673c3683cd.zip |
Changed slv2_port_get_type to slv2_port_get_data_type, and SLV2PortType to SLV2PortDataType.
Fixed autoconf warning.
git-svn-id: http://svn.drobilla.net/lad/slv2@682 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'utils')
-rw-r--r-- | utils/lv2_inspect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lv2_inspect.c b/utils/lv2_inspect.c index 26c4cf5..abe0234 100644 --- a/utils/lv2_inspect.c +++ b/utils/lv2_inspect.c @@ -44,7 +44,7 @@ print_port(SLV2Plugin p, uint32_t index) printf("Unknown"); } - SLV2PortType type = slv2_port_get_type(p, port); + SLV2PortDataType type = slv2_port_get_data_type(p, port); printf("\n\t\tType: "); switch (type) { |