summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/example.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example.c b/examples/example.c
index 25226a8..4d494c5 100644
--- a/examples/example.c
+++ b/examples/example.c
@@ -57,7 +57,7 @@ int main(int argc, char **argv) {
for (j = 0; j < 10; j++) {
char buf[64];
- snprintf(buf,64,"%d",j);
+ snprintf(buf,64,"%u",j);
reply = redisCommand(c,"LPUSH mylist element-%s", buf);
freeReplyObject(reply);
}