Merge branch 'unstable' of https://github.com/JohnSully/redis2 into unstable

Former-commit-id: 2e22aa1a9cd9247a51c03afc161cb84a98139438
This commit is contained in:
John Sully 2019-05-20 10:57:59 -04:00
commit fa828d8c92

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", (const char *) data);
RedisModule_Free(data);
}