cleanup random.c

Casting Py_ssize_t to Py_ssize_t is useless.
This commit is contained in:
Victor Stinner 2016-06-14 16:35:49 +02:00
parent b98a36e8f3
commit c72828ba33
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ dev_urandom_noraise(unsigned char *buffer, Py_ssize_t size)
break;
}
buffer += n;
size -= (Py_ssize_t)n;
size -= n;
}
close(fd);
}