From eac0e68c10df0db53c48abf30c3e080588e1165a Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Fri, 11 Jun 2010 19:05:08 +0000 Subject: Fix an incorrect return type. --- Modules/_struct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_struct.c b/Modules/_struct.c index e05fb73..5113b93 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) { -- cgit v0.12