Unverified Commit 79c506eb authored by Madelyn Olson's avatar Madelyn Olson Committed by GitHub
Browse files

Fixed timer warning (#5953)

parent f2db379f
......@@ -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);
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment