Skip to content

Commit aed8cfa

Browse files
Of course, FT_ATOMIC_STORE_CHAR_RELAXED ain't available 'ere
1 parent a84c035 commit aed8cfa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_bz2module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ decompress_buf(BZ2Decompressor *d, Py_ssize_t max_length)
462462

463463
if (catch_bz2_error(bzret)) {
464464
d->bzerror = bzret;
465-
FT_ATOMIC_STORE_CHAR_RELAXED(d->needs_input, 0);
465+
_Py_atomic_store_char_relaxed(&d->needs_input, 0);
466466
goto error;
467467
}
468468
if (bzret == BZ_STREAM_END) {

0 commit comments

Comments
 (0)