In redismodule.h, RedisModule_DeauthenticateAndCloseClient returns void

void REDISMODULE_API_FUNC(RedisModule_DeauthenticateAndCloseClient)(RedisModuleCtx *ctx, uint64_t client_id);

But in module.c, RM_DeauthenticateAndCloseClient returns int

int RM_DeauthenticateAndCloseClient(RedisModuleCtx *ctx, uint64_t client_id) 

Comment From: trevor211

Since a PR has been proposed, this issue can be safely closed. @itamarhaber

Comment From: madolson

Thanks for calling this out!