fix snprintf format string

This commit is contained in:
Sergey Polovko 2015-10-05 16:22:00 +03:00
parent 010756025e
commit f932f0ed27
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}