mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Fix compilater warnings on Windows 64-bit
This commit is contained in:
parent
9ce59bbe43
commit
84bb1cf994
2 changed files with 4 additions and 4 deletions
|
@ -13,7 +13,7 @@
|
|||
|
||||
#define OFF(x) offsetof(PyTracebackObject, x)
|
||||
|
||||
#define PUTS(fd, str) write(fd, str, strlen(str))
|
||||
#define PUTS(fd, str) write(fd, str, (int)strlen(str))
|
||||
#define MAX_STRING_LENGTH 500
|
||||
#define MAX_FRAME_DEPTH 100
|
||||
#define MAX_NTHREADS 100
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue