Kaydet (Commit) 6d787361 authored tarafından Alexandre Vassalotti's avatar Alexandre Vassalotti

Initialize variables in PyCurses_getsyx() to avoid compiler warnings.

üst a2db6873
......@@ -1763,7 +1763,8 @@ PyCurses_EraseChar(PyObject *self)
static PyObject *
PyCurses_getsyx(PyObject *self)
{
int x,y;
int x = 0;
int y = 0;
PyCursesInitialised
......
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