Merge pull request #26 from RedisLabs/util-typo

fix typo in example modules causing compile errors
master
Mark Nunberg 7 years ago committed by GitHub
commit 44b236bda6

@ -65,12 +65,12 @@ int HGetSetCommand(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
// get the current value of the hash element // get the current value of the hash element
RedisModuleCallReply *rep = RedisModuleCallReply *rep =
RedisModule_Call(ctx, "HGET", "ss", argv[1], argv[2]); RedisModule_Call(ctx, "HGET", "ss", argv[1], argv[2]);
RMUTIL_ASSERT_NOERROR(rep); RMUTIL_ASSERT_NOERROR(ctx, rep);
// set the new value of the element // set the new value of the element
RedisModuleCallReply *srep = RedisModuleCallReply *srep =
RedisModule_Call(ctx, "HSET", "sss", argv[1], argv[2], argv[3]); RedisModule_Call(ctx, "HSET", "sss", argv[1], argv[2], argv[3]);
RMUTIL_ASSERT_NOERROR(srep); RMUTIL_ASSERT_NOERROR(ctx, srep);
// if the value was null before - we just return null // if the value was null before - we just return null
if (RedisModule_CallReplyType(rep) == REDISMODULE_REPLY_NULL) { if (RedisModule_CallReplyType(rep) == REDISMODULE_REPLY_NULL) {
@ -137,7 +137,7 @@ int RedisModule_OnLoad(RedisModuleCtx *ctx) {
} }
// register example.hgetset - using the shortened utility registration macro // register example.hgetset - using the shortened utility registration macro
RMUtil_RegisterWriteCmd(ctx, "example.hgetset", HGetSetCommand, "fast"); RMUtil_RegisterWriteCmd(ctx, "example.hgetset", HGetSetCommand);
// register the unit test // register the unit test
RMUtil_RegisterWriteCmd(ctx, "example.test", TestModule); RMUtil_RegisterWriteCmd(ctx, "example.test", TestModule);

Loading…
Cancel
Save