1
0
forked from aniani/vim

updated for version 7.3.1074

Problem:    Compiler warning for printf format. (Manuel Ortega)
Solution:   Add type casts.
This commit is contained in:
Bram Moolenaar 2013-05-30 19:01:24 +02:00
parent 16299b57cb
commit f62d942e54
2 changed files with 3 additions and 1 deletions

View File

@ -3807,7 +3807,7 @@ RangeRepr(RangeObject *self)
name = "";
return PyString_FromFormat("<range %s (%d:%d)>",
name, self->start, self->end);
name, (int)self->start, (int)self->end);
}
}

View File

@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1074,
/**/
1073,
/**/