Commit 263afe2f authored by Jesus Cea's avatar Jesus Cea

Issue #1667: Unused variable warning in Non-Windows

parent e5567ccc
......@@ -40,7 +40,10 @@ static int
my_fgets(char *buf, int len, FILE *fp)
{
char *p;
#ifdef MS_WINDOWS
int i;
#endif
while (1) {
if (PyOS_InputHook != NULL)
(void)(PyOS_InputHook)();
......
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