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
index c28038e..eefd6ed 100644
--- a/src/if_py_both.h
+++ b/src/if_py_both.h
@@ -3807,7 +3807,7 @@
name = "";
return PyString_FromFormat("<range %s (%d:%d)>",
- name, self->start, self->end);
+ name, (int)self->start, (int)self->end);
}
}
diff --git a/src/version.c b/src/version.c
index bd42a6a..8ee5b4e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -729,6 +729,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1074,
+/**/
1073,
/**/
1072,