diff options
author | David Robillard <d@drobilla.net> | 2018-11-10 12:41:07 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-11-10 12:41:07 +0100 |
commit | c7f2e601314debd0158c5a3c41b67d0fd8c5d76a (patch) | |
tree | e26aee93e692de4924ae73cd2fb42830ce8dd82a | |
parent | 710ba008f7c90d1f1e05254f123026ae3cc5ef4a (diff) | |
download | zix-c7f2e601314debd0158c5a3c41b67d0fd8c5d76a.tar.gz zix-c7f2e601314debd0158c5a3c41b67d0fd8c5d76a.tar.bz2 zix-c7f2e601314debd0158c5a3c41b67d0fd8c5d76a.zip |
Remove pointless const qualification in prototype
-rw-r--r-- | zix/digest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zix/digest.h b/zix/digest.h index 34ab376..8c96492 100644 --- a/zix/digest.h +++ b/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" */ |