From 9ce59bbe43178fa033234412318c64abc817cb40 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 17 May 2013 00:04:56 +0200 Subject: [PATCH] Fix a compilater warning on Windows 64-bit --- Python/formatter_unicode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/formatter_unicode.c b/Python/formatter_unicode.c index 548b49aa3ef..bb173d9bd4f 100644 --- a/Python/formatter_unicode.c +++ b/Python/formatter_unicode.c @@ -315,7 +315,7 @@ calc_padding(Py_ssize_t nchars, Py_ssize_t width, Py_UCS4 align, /* Do the padding, and return a pointer to where the caller-supplied content goes. */ -static Py_ssize_t +static int fill_padding(_PyUnicodeWriter *writer, Py_ssize_t nchars, Py_UCS4 fill_char, Py_ssize_t n_lpadding,