summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--example.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/example.c b/example.c
index 05a0fa4..5ec85e3 100644
--- a/example.c
+++ b/example.c
@@ -20,12 +20,12 @@ int main(void) {
freeReplyObject(reply);
/* Set a key */
- reply = redisCommand(fd,"SET %s %s\n", "foo", "hello world");
+ reply = redisCommand(fd,"SET %s %s", "foo", "hello world");
printf("SET: %s\n", reply->reply);
freeReplyObject(reply);
/* Set a key using binary safe API */
- reply = redisCommand(fd,"SET %b %b\n", "bar", 3, "hello", 5);
+ reply = redisCommand(fd,"SET %b %b", "bar", 3, "hello", 5);
printf("SET (binary API): %s\n", reply->reply);
freeReplyObject(reply);