mirror of
https://github.com/redis/redis.git
synced 2026-04-21 03:01:35 -04:00
Fixed timer warning (#5953)
This commit is contained in:
@@ -40,7 +40,7 @@
|
||||
/* Timer callback. */
|
||||
void timerHandler(RedisModuleCtx *ctx, void *data) {
|
||||
REDISMODULE_NOT_USED(ctx);
|
||||
printf("Fired %s!\n", data);
|
||||
printf("Fired %s!\n", (char *)data);
|
||||
RedisModule_Free(data);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user