From bcde10aa7e47da68afb68fe75c65b9339dd89f86 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Mon, 16 May 2016 09:42:29 +0300 Subject: Issue #26765: Ensure that bytes- and unicode-specific stringlib files are used with correct type. --- Objects/stringlib/join.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Objects/stringlib/join.h') diff --git a/Objects/stringlib/join.h b/Objects/stringlib/join.h index cbf81be170..90f966dd5c 100644 --- a/Objects/stringlib/join.h +++ b/Objects/stringlib/join.h @@ -1,6 +1,6 @@ /* stringlib: bytes joining implementation */ -#if STRINGLIB_SIZEOF_CHAR != 1 +#if STRINGLIB_IS_UNICODE #error join.h only compatible with byte-wise strings #endif -- cgit v1.2.1