# HG changeset patch # User Bram Moolenaar # Date 1369933284 -7200 # Node ID b943fd24c351141113dba360bd1d1f02b38813f5 # Parent b1c4a737f6d1f971f726c9c098e3798fbc27c093 updated for version 7.3.1074 Problem: Compiler warning for printf format. (Manuel Ortega) Solution: Add type casts. diff --git a/src/if_py_both.h b/src/if_py_both.h --- a/src/if_py_both.h +++ b/src/if_py_both.h @@ -3807,7 +3807,7 @@ RangeRepr(RangeObject *self) name = ""; return PyString_FromFormat("", - name, self->start, self->end); + name, (int)self->start, (int)self->end); } } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1074, +/**/ 1073, /**/ 1072,