diff options
author | David Robillard <d@drobilla.net> | 2009-06-02 23:58:11 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-06-02 23:58:11 +0000 |
commit | 73856ffd42ba34d279ae16ec8058a2a22bf9a1d6 (patch) | |
tree | 95c80f73feeb6b24839f8d1cd7599ce586110538 /src/client | |
parent | 49c05a2653e2f6c8abd8390a5e1f07361cd66f33 (diff) | |
download | ingen-73856ffd42ba34d279ae16ec8058a2a22bf9a1d6.tar.gz ingen-73856ffd42ba34d279ae16ec8058a2a22bf9a1d6.tar.bz2 ingen-73856ffd42ba34d279ae16ec8058a2a22bf9a1d6.zip |
Fix crash on copy/paste.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2063 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/ClientStore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp index 7a2a4ef5..4943cf71 100644 --- a/src/client/ClientStore.cpp +++ b/src/client/ClientStore.cpp @@ -327,7 +327,7 @@ ClientStore::put(const URI& uri, const Resource::Properties& properties) p->set_properties(properties); add_object(p); } else { - cerr << "WARNING: Port " << path << " is malformed" << endl; + cerr << "WARNING: Port " << path << " has no type" << endl; } } else { cerr << "WARNING: Ignoring object " << path << " with unknown type " |