diff options
author | David Robillard <d@drobilla.net> | 2018-09-22 22:12:55 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-22 22:14:37 +0200 |
commit | eb95b6f0e129dd185a833be2f55aaa4e7f37f703 (patch) | |
tree | f841cdd8d999d8055c448443c26548d516658067 /src/control.c | |
parent | c5b75a160cdae33c08d32ea82486ae599a594712 (diff) | |
download | jalv-eb95b6f0e129dd185a833be2f55aaa4e7f37f703.tar.gz jalv-eb95b6f0e129dd185a833be2f55aaa4e7f37f703.tar.bz2 jalv-eb95b6f0e129dd185a833be2f55aaa4e7f37f703.zip |
Simplify control display in console interface
Diffstat (limited to 'src/control.c')
-rw-r--r-- | src/control.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/control.c b/src/control.c index 9fe5924..2326280 100644 --- a/src/control.c +++ b/src/control.c @@ -136,11 +136,6 @@ new_property_control(Jalv* jalv, const LilvNode* property) id->is_integer = (id->value_type == jalv->forge.Int || id->value_type == jalv->forge.Long); - const size_t sym_len = strlen(lilv_node_as_string(id->symbol)); - if (sym_len > jalv->longest_sym) { - jalv->longest_sym = sym_len; - } - if (!id->value_type) { fprintf(stderr, "Unknown value type for property <%s>\n", lilv_node_as_string(property)); |