Skip to content

Commit a781206

Browse files
committed
Fix build failure for macos
1 parent 398b8b1 commit a781206

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/modules/postnotifications.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ static void KeySpace_ServerEventCallback(RedisModuleCtx *ctx, RedisModuleEvent e
213213
REDISMODULE_NOT_USED(eid);
214214
REDISMODULE_NOT_USED(data);
215215
if (subevent > 3) {
216-
RedisModule_Log(ctx, "warning", "Got an unexpected subevent '%ld'", subevent);
216+
RedisModule_Log(ctx, "warning", "Got an unexpected subevent '%llu'", subevent);
217217
return;
218218
}
219219
static const char* events[] = {

0 commit comments

Comments
 (0)