commit | f62d942e548f07cf35b24f8410a9b5cb06bbb60e | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu May 30 19:01:24 2013 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu May 30 19:01:24 2013 +0200 |
tree | 7109d57e96eba98577b48c43fa23bb6ca3699175 | |
parent | 16299b57cb60767b68f475a182edd45333fbb2df [diff] [blame] |
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); } }