diff options
author | David Robillard <d@drobilla.net> | 2016-09-05 02:21:03 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-09-05 02:21:03 -0400 |
commit | 5be277f5d9d2bbfa58028fb7522da4781450d6c4 (patch) | |
tree | 8a0853dff9b32e1d67023bb03deec3b5d86baac0 /src | |
parent | c95e0b3250cbe5144546dff53d9b5665988bcce4 (diff) | |
download | lilv-5be277f5d9d2bbfa58028fb7522da4781450d6c4.tar.gz lilv-5be277f5d9d2bbfa58028fb7522da4781450d6c4.tar.bz2 lilv-5be277f5d9d2bbfa58028fb7522da4781450d6c4.zip |
Fix misleading error message
Diffstat (limited to 'src')
-rw-r--r-- | src/plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugin.c b/src/plugin.c index e46fed8..f8ab26a 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -142,7 +142,7 @@ lilv_plugin_get_unique(const LilvPlugin* p, { LilvNode* ret = lilv_plugin_get_one(p, subject, predicate); if (!ret) { - LILV_ERRORF("Multiple values found for (%s %s ...) property\n", + LILV_ERRORF("No value found for (%s %s ...) property\n", sord_node_get_string(subject), sord_node_get_string(predicate)); } |