summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-01-05 22:32:07 +0000
committerDavid Robillard <d@drobilla.net>2012-01-05 22:32:07 +0000
commitf431110131bfe88f830386b573bdcaca3774de0d (patch)
tree192dbe34f47508d096a46e0a00001a8c1d193faf
parentdc02039e446f90323b295cd78b7993617beafd7e (diff)
downloadzix-f431110131bfe88f830386b573bdcaca3774de0d.tar.gz
zix-f431110131bfe88f830386b573bdcaca3774de0d.tar.bz2
zix-f431110131bfe88f830386b573bdcaca3774de0d.zip
Fix prototype of ZixDestroyFunc.
git-svn-id: http://svn.drobilla.net/zix/trunk@44 df6676b4-ccc9-40e5-b5d6-7c4628a128e3
-rw-r--r--zix/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zix/common.h b/zix/common.h
index 052cb7b..c0dffeb 100644
--- a/zix/common.h
+++ b/zix/common.h
@@ -64,7 +64,7 @@ typedef bool (*ZixEqualFunc)(const void* a, const void* b);
/**
Function to destroy an element.
*/
-typedef void (*ZixDestroyFunc)(const void* ptr);
+typedef void (*ZixDestroyFunc)(void* ptr);
/**@}
*/