Kaydet (Commit) 5e545194 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

fix compiler warnings

üst 1a5e5de8
...@@ -649,7 +649,7 @@ PyCursesWindow_AddStr(PyCursesWindowObject *self, PyObject *args) ...@@ -649,7 +649,7 @@ PyCursesWindow_AddStr(PyCursesWindowObject *self, PyObject *args)
int rtn; int rtn;
int x, y; int x, y;
int strtype; int strtype;
PyObject *strobj, *bytesobj; PyObject *strobj, *bytesobj = NULL;
#ifdef HAVE_NCURSESW #ifdef HAVE_NCURSESW
wchar_t *wstr = NULL; wchar_t *wstr = NULL;
#endif #endif
...@@ -725,7 +725,7 @@ PyCursesWindow_AddNStr(PyCursesWindowObject *self, PyObject *args) ...@@ -725,7 +725,7 @@ PyCursesWindow_AddNStr(PyCursesWindowObject *self, PyObject *args)
{ {
int rtn, x, y, n; int rtn, x, y, n;
int strtype; int strtype;
PyObject *strobj, *bytesobj; PyObject *strobj, *bytesobj = NULL;
#ifdef HAVE_NCURSESW #ifdef HAVE_NCURSESW
wchar_t *wstr = NULL; wchar_t *wstr = NULL;
#endif #endif
...@@ -1413,7 +1413,7 @@ PyCursesWindow_InsStr(PyCursesWindowObject *self, PyObject *args) ...@@ -1413,7 +1413,7 @@ PyCursesWindow_InsStr(PyCursesWindowObject *self, PyObject *args)
int rtn; int rtn;
int x, y; int x, y;
int strtype; int strtype;
PyObject *strobj, *bytesobj; PyObject *strobj, *bytesobj = NULL;
#ifdef HAVE_NCURSESW #ifdef HAVE_NCURSESW
wchar_t *wstr = NULL; wchar_t *wstr = NULL;
#endif #endif
...@@ -1491,7 +1491,7 @@ PyCursesWindow_InsNStr(PyCursesWindowObject *self, PyObject *args) ...@@ -1491,7 +1491,7 @@ PyCursesWindow_InsNStr(PyCursesWindowObject *self, PyObject *args)
{ {
int rtn, x, y, n; int rtn, x, y, n;
int strtype; int strtype;
PyObject *strobj, *bytesobj; PyObject *strobj, *bytesobj = NULL;
#ifdef HAVE_NCURSESW #ifdef HAVE_NCURSESW
wchar_t *wstr = NULL; wchar_t *wstr = NULL;
#endif #endif
......
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