Fix an incorrect return type.

This commit is contained in:
Mark Dickinson 2010-06-11 19:05:08 +00:00
parent ab4096f2f9
commit eac0e68c10
1 changed files with 1 additions and 1 deletions

View File

@ -1145,7 +1145,7 @@ getentry(int c, const formatdef *f)
/* Align a size according to a format code */ /* Align a size according to a format code */
static int static Py_ssize_t
align(Py_ssize_t size, char c, const formatdef *e) align(Py_ssize_t size, char c, const formatdef *e)
{ {
if (e->format == c) { if (e->format == c) {