Commit 95f492ee authored by antirez's avatar antirez
Browse files

Silence different signs comparison warning in sds.c.

parent 364464e7
...@@ -457,7 +457,7 @@ sds sdscatfmt(sds s, char const *fmt, ...) { ...@@ -457,7 +457,7 @@ sds sdscatfmt(sds s, char const *fmt, ...) {
i = initlen; /* Position of the next byte to write to dest str. */ i = initlen; /* Position of the next byte to write to dest str. */
while(*f) { while(*f) {
char next, *str; char next, *str;
size_t l; int l;
long long num; long long num;
unsigned long long unum; unsigned long long unum;
......
...@@ -457,7 +457,7 @@ sds sdscatfmt(sds s, char const *fmt, ...) { ...@@ -457,7 +457,7 @@ sds sdscatfmt(sds s, char const *fmt, ...) {
i = initlen; /* Position of the next byte to write to dest str. */ i = initlen; /* Position of the next byte to write to dest str. */
while(*f) { while(*f) {
char next, *str; char next, *str;
size_t l; int l;
long long num; long long num;
unsigned long long unum; unsigned long long unum;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment