Commit e047cfa7 authored by Mark Dickinson's avatar Mark Dickinson

Issue #8677: Make curses module PY_SSIZE_T_CLEAN.

parent a467d38b
......@@ -100,6 +100,8 @@ char *PyCursesVersion = "2.2";
/* Includes */
#define PY_SSIZE_T_CLEAN
#include "Python.h"
......@@ -1382,7 +1384,7 @@ PyCursesWindow_PutWin(PyCursesWindowObject *self, PyObject *stream)
fseek(fp, 0, 0);
while (1) {
char buf[BUFSIZ];
int n = fread(buf, 1, BUFSIZ, fp);
Py_ssize_t n = fread(buf, 1, BUFSIZ, fp);
if (n <= 0)
break;
Py_DECREF(res);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment