From: Mark Dickinson Date: Fri, 11 Jun 2010 19:05:08 +0000 (+0000) Subject: Fix an incorrect return type. X-Git-Tag: v3.2a1~570 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eac0e68c10df0db53c48abf30c3e080588e1165a;p=python Fix an incorrect return type. --- diff --git a/Modules/_struct.c b/Modules/_struct.c index e05fb730ef..5113b93bb5 100644 --- a/Modules/_struct.c +++ b/Modules/_struct.c @@ -1145,7 +1145,7 @@ getentry(int c, const formatdef *f) /* Align a size according to a format code */ -static int +static Py_ssize_t align(Py_ssize_t size, char c, const formatdef *e) { if (e->format == c) {