Browse Source

Issue #1677: Unused variable warning in Non-Windows

pull/2332/head
Jesus Cea 14 years ago
parent
commit
035997f1a3
  1. 5
      Parser/myreadline.c

5
Parser/myreadline.c

@ -36,8 +36,11 @@ static int
my_fgets(char *buf, int len, FILE *fp)
{
char *p;
int i;
int err;
#ifdef MS_WINDOWS
int i;
#endif
while (1) {
if (PyOS_InputHook != NULL)
(void)(PyOS_InputHook)();

Loading…
Cancel
Save