Fixed timer warning (#5953)

This commit is contained in:
Madelyn Olson 2020-08-11 20:16:41 -07:00 committed by GitHub
parent f2db379fa3
commit 79c506ebf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}