diff options
author | David Robillard <d@drobilla.net> | 2012-08-10 20:36:36 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-10 20:36:36 +0000 |
commit | 762435ea92bbeed0b36afc5fa4303540f3e72ba1 (patch) | |
tree | bb503e6f6d7788f45c398ffb0f35b42f73390a40 /src/server/events | |
parent | 16d7c76a60f8bedd23f1b3fb1f5357b0d548dab2 (diff) | |
download | ingen-762435ea92bbeed0b36afc5fa4303540f3e72ba1.tar.gz ingen-762435ea92bbeed0b36afc5fa4303540f3e72ba1.tar.bz2 ingen-762435ea92bbeed0b36afc5fa4303540f3e72ba1.zip |
Fix various const violations.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4647 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/events')
-rw-r--r-- | src/server/events/Get.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/events/Get.cpp b/src/server/events/Get.cpp index f2204e67..ae4174bb 100644 --- a/src/server/events/Get.cpp +++ b/src/server/events/Get.cpp @@ -86,7 +86,7 @@ send_node(Interface* client, const NodeImpl* node) { PluginImpl* const plugin = node->plugin_impl(); if (plugin->type() == Plugin::Patch) { - send_patch(client, (PatchImpl*)node); + send_patch(client, (const PatchImpl*)node); } else { client->put(node->path(), node->properties()); for (size_t j = 0; j < node->num_ports(); ++j) { |