diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-20 20:39:33 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-20 20:39:33 -0700 |
commit | 0c21214f3e583d541227df2239de377e796b55fa (patch) | |
tree | 154bfb91be848e117f6721523750bdc4afff8b71 /Objects/unicodeobject.c | |
parent | ec2319c46d11e8f486e7def785339af5415a3559 (diff) | |
download | cpython-git-0c21214f3e583d541227df2239de377e796b55fa.tar.gz |
replace usage of Py_VA_COPY with the (C99) standard va_copy
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 85cdbb73b7..f0a908386f 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -2874,9 +2874,8 @@ PyUnicode_FromFormatV(const char *format, va_list vargs) writer.min_length = strlen(format) + 100; writer.overallocate = 1; - /* va_list may be an array (of 1 item) on some platforms (ex: AMD64). - Copy it to be able to pass a reference to a subfunction. */ - Py_VA_COPY(vargs2, vargs); + // Copy varags to be able to pass a reference to a subfunction. + va_copy(vargs2, vargs); for (f = format; *f; ) { if (*f == '%') { |