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:
parent
16299b57cb
commit
f62d942e54
@ -3807,7 +3807,7 @@ RangeRepr(RangeObject *self)
|
|||||||
name = "";
|
name = "";
|
||||||
|
|
||||||
return PyString_FromFormat("<range %s (%d:%d)>",
|
return PyString_FromFormat("<range %s (%d:%d)>",
|
||||||
name, self->start, self->end);
|
name, (int)self->start, (int)self->end);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -728,6 +728,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1074,
|
||||||
/**/
|
/**/
|
||||||
1073,
|
1073,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user