mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.3.1074
Problem: Compiler warning for printf format. (Manuel Ortega) Solution: Add type casts.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user