diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-05-17 00:12:04 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-05-17 00:12:04 +0200 |
commit | 56ab3a7c859cf948aa42a5a04ae15dcadb89bbf9 (patch) | |
tree | 97749de19cdfab7047be9a3b6c0f3fe3404bd4ea /Python/traceback.c | |
parent | b603792a7d419f727c2e33663f26e3647304ac6f (diff) | |
download | cpython-56ab3a7c859cf948aa42a5a04ae15dcadb89bbf9.tar.gz |
Fix compilater warnings on Windows 64-bit
Diffstat (limited to 'Python/traceback.c')
-rw-r--r-- | Python/traceback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/traceback.c b/Python/traceback.c index b928902ef0..c56b23f6cc 100644 --- a/Python/traceback.c +++ b/Python/traceback.c @@ -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 |