Skip to content

Commit 8caf942

Browse files
committed
Convert recently added cases of Py_ALIGNED
1 parent 6aa2cae commit 8caf942

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/binascii.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ static const _Py_ALIGNED_DEF(64, unsigned char) table_b2a_base85_a85[] =
245245
#define BASE85_A85_Y 0x20202020
246246

247247

248-
static const unsigned char table_a2b_base32[] Py_ALIGNED(64) = {
248+
static const _Py_ALIGNED_DEF(64, unsigned char) table_a2b_base32[] = {
249249
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
250250
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
251251
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
@@ -265,7 +265,7 @@ static const unsigned char table_a2b_base32[] Py_ALIGNED(64) = {
265265
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
266266
};
267267

268-
static const unsigned char table_b2a_base32[] Py_ALIGNED(64) =
268+
static const _Py_ALIGNED_DEF(64, unsigned char) table_b2a_base32[] =
269269
"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567";
270270

271271
#define BASE32_PAD '='

0 commit comments

Comments
 (0)