summaryrefslogtreecommitdiffstats
path: root/src/client
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-11-27 01:45:38 +0000
committerDavid Robillard <d@drobilla.net>2008-11-27 01:45:38 +0000
commitca3bd4c24b7db71b774a560dc4089321d74fee4d (patch)
treee333db8312819e9077c8b81ffbbf4a101f2d32b9 /src/client
parent9b9a6c9e3eb8da7eb1decd963a6c2f0e69b57ed4 (diff)
downloadingen-ca3bd4c24b7db71b774a560dc4089321d74fee4d.tar.gz
ingen-ca3bd4c24b7db71b774a560dc4089321d74fee4d.tar.bz2
ingen-ca3bd4c24b7db71b774a560dc4089321d74fee4d.zip
Fix orphan etc. errors for 'ingen -egl' (fix ticket #201).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1784 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client')
-rw-r--r--src/client/ClientStore.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp
index cf1109cf..36156db8 100644
--- a/src/client/ClientStore.cpp
+++ b/src/client/ClientStore.cpp
@@ -530,7 +530,7 @@ ClientStore::set_variable(const string& subject_path, const string& predicate, c
subject->set_variable(predicate, value);
} else {
add_variable_orphan(subject_path, predicate, value);
- cerr << "WARNING: variable for unknown object " << subject_path << endl;
+ cerr << "WARNING: variable '" << predicate << "' for unknown object " << subject_path << endl;
}
}
@@ -546,8 +546,7 @@ ClientStore::set_property(const string& subject_path, const string& predicate, c
if (obj)
obj->set_property(predicate, value);
else
- cerr << "WARNING: property for unknown object " << subject_path
- << ". Refresh!" << endl;
+ cerr << "WARNING: property '" << predicate << "' for unknown object " << subject_path << endl;
} else {
if (subject_path.find(":") != string::npos
&& predicate == "rdf:type" && value.type() == Atom::URI) {