Commit 7aedf11e authored by Benjamin Peterson's avatar Benjamin Peterson

fix compiler warning

parent 05e782fc
......@@ -60,7 +60,7 @@ static int
internal_close(PyFileIOObject *self)
{
int err = 0;
int save_errno;
int save_errno = 0;
if (self->fd >= 0) {
int fd = self->fd;
self->fd = -1;
......
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