Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms.
Patch by Yogesh Chaudhari.
diff --git a/Modules/_io/textio.c b/Modules/_io/textio.c
index cd751c1..111cc7e 100644
--- a/Modules/_io/textio.c
+++ b/Modules/_io/textio.c
@@ -2370,7 +2370,7 @@
     while (input < input_end) {
         Py_ssize_t n;
 
-        DECODER_DECODE(input, 1, n);
+        DECODER_DECODE(input, (Py_ssize_t)1, n);
         /* We got n chars for 1 byte */
         chars_decoded += n;
         cookie.bytes_to_feed += 1;