summaryrefslogtreecommitdiff
path: root/src/modules/hellohook.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/hellohook.c')
-rw-r--r--src/modules/hellohook.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/hellohook.c b/src/modules/hellohook.c
index 7ab78ed07..b451bd975 100644
--- a/src/modules/hellohook.c
+++ b/src/modules/hellohook.c
@@ -47,7 +47,7 @@ void clientChangeCallback(RedisModuleCtx *ctx, RedisModuleEvent e, uint64_t sub,
printf("Client %s event for client #%llu %s:%d\n",
(sub == REDISMODULE_SUBEVENT_CLIENT_CHANGE_CONNECTED) ?
"connection" : "disconnection",
- ci->id,ci->addr,ci->port);
+ (unsigned long long)ci->id,ci->addr,ci->port);
}
void flushdbCallback(RedisModuleCtx *ctx, RedisModuleEvent e, uint64_t sub, void *data)