diff options
author | David Robillard <d@drobilla.net> | 2013-12-25 02:38:06 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-12-25 02:38:06 +0000 |
commit | 890f81e2f51ef47fe39e940ae0a422dde9b25574 (patch) | |
tree | 2b9284f50bfd2eb84f5002a7fa8518c911542093 /src/collections.c | |
parent | 05576eb9976357bc3870095c0d7e284c655ddb52 (diff) | |
download | lilv-890f81e2f51ef47fe39e940ae0a422dde9b25574.tar.gz lilv-890f81e2f51ef47fe39e940ae0a422dde9b25574.tar.bz2 lilv-890f81e2f51ef47fe39e940ae0a422dde9b25574.zip |
Fix some const-correctness violations.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5193 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/collections.c')
-rw-r--r-- | src/collections.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/collections.c b/src/collections.c index a4ac744..6a3488b 100644 --- a/src/collections.c +++ b/src/collections.c @@ -64,7 +64,7 @@ void* lilv_collection_get(const LilvCollection* collection, const LilvIter* i) { - return zix_tree_get((ZixTreeIter*)i); + return zix_tree_get((const ZixTreeIter*)i); } /* Constructors */ |