diff options
author | David Robillard <d@drobilla.net> | 2017-12-28 16:42:26 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-12-29 12:30:55 -0500 |
commit | 304918004e806f27525261de9ac39122e4aee7f2 (patch) | |
tree | 531024fc25a5f81929e5eda22092e26b627d625d /src/zix | |
parent | 16a16c20319bffa72cb69bb1425e2d8826419595 (diff) | |
download | sord-304918004e806f27525261de9ac39122e4aee7f2.tar.gz sord-304918004e806f27525261de9ac39122e4aee7f2.tar.bz2 sord-304918004e806f27525261de9ac39122e4aee7f2.zip |
Remove const in function declaration
Diffstat (limited to 'src/zix')
-rw-r--r-- | src/zix/digest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zix/digest.h b/src/zix/digest.h index 34ab376..8c96492 100644 --- a/src/zix/digest.h +++ b/src/zix/digest.h @@ -30,7 +30,7 @@ ZIX_API uint32_t zix_digest_start(void); ZIX_API uint32_t -zix_digest_add(uint32_t hash, const void* buf, const size_t len); +zix_digest_add(uint32_t hash, const void* buf, size_t len); #ifdef __cplusplus } /* extern "C" */ |