diff options
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.h b/src/util.h index 0d9834a76..1db0166d9 100644 --- a/src/util.h +++ b/src/util.h @@ -251,7 +251,7 @@ typedef struct rspamd_rwlock_s { * Create new mutex * @return mutex or NULL */ -rspamd_mutex_t* rspamd_mutex_new (); +rspamd_mutex_t* rspamd_mutex_new (void); /** * Lock mutex @@ -269,7 +269,7 @@ void rspamd_mutex_unlock (rspamd_mutex_t *mtx); * Create new rwloc * @return */ -rspamd_rwlock_t* rspamd_rwlock_new (); +rspamd_rwlock_t* rspamd_rwlock_new (void); /** * Lock rwlock for writing |