Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 60874b0

Browse files
committed
Merged revisions 75909 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r75909 | mark.dickinson | 2009-10-28 07:47:32 +0000 (Wed, 28 Oct 2009) | 1 line Fix format specifier for MSVC ........
1 parent d4aea71 commit 60874b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_io/_iomodule.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ typedef PY_LONG_LONG Py_off_t;
8686
# define PyLong_FromOff_t PyLong_FromLongLong
8787
# define PY_OFF_T_MAX PY_LLONG_MAX
8888
# define PY_OFF_T_MIN PY_LLONG_MIN
89-
# define PY_PRIdOFF "lld" /* format to use in printf with type off_t */
89+
# define PY_PRIdOFF "I64d" /* format to use in printf with type off_t */
9090
# define PY_OFF_T_COMPAT PY_LONG_LONG /* type compatible with off_t */
9191
#else
9292

0 commit comments

Comments
 (0)