summaryrefslogtreecommitdiff
path: root/girepository/cmph/jenkins_hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'girepository/cmph/jenkins_hash.c')
-rw-r--r--girepository/cmph/jenkins_hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/girepository/cmph/jenkins_hash.c b/girepository/cmph/jenkins_hash.c
index f5233a5a..65cdff95 100644
--- a/girepository/cmph/jenkins_hash.c
+++ b/girepository/cmph/jenkins_hash.c
@@ -97,7 +97,7 @@ void jenkins_state_destroy(jenkins_state_t *state)
}
-inline void __jenkins_hash_vector(cmph_uint32 seed, const char *k, cmph_uint32 keylen, cmph_uint32 * hashes)
+static inline void __jenkins_hash_vector(cmph_uint32 seed, const char *k, cmph_uint32 keylen, cmph_uint32 * hashes)
{
register cmph_uint32 len, length;
@@ -266,7 +266,7 @@ void jenkins_state_pack(jenkins_state_t *state, void *jenkins_packed)
* \brief Return the amount of space needed to pack a jenkins function.
* \return the size of the packed function or zero for failures
*/
-cmph_uint32 jenkins_state_packed_size()
+cmph_uint32 jenkins_state_packed_size(void)
{
return sizeof(cmph_uint32);
}