From 8b54cb751266ec4f5079fc3902c2972e25b5e70b Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Wed, 17 Jun 2020 21:29:40 +0900 Subject: [PATCH] fix buildbots --- Include/cpython/unicodeobject.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Include/cpython/unicodeobject.h b/Include/cpython/unicodeobject.h index 569bdb1e2a94ba..7e53ccc9e63f07 100644 --- a/Include/cpython/unicodeobject.h +++ b/Include/cpython/unicodeobject.h @@ -53,7 +53,8 @@ Py_UNICODE_COPY(Py_UNICODE *target, const Py_UNICODE *source, Py_ssize_t length) Py_DEPRECATED(3.3) static inline void Py_UNICODE_FILL(Py_UNICODE *target, Py_UNICODE value, Py_ssize_t length) { - for (Py_ssize_t i = 0; i < length; i++) { + Py_ssize_t i; + for (i = 0; i < length; i++) { target[i] = value; } } pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy