Skip to content

Commit 50a7bb6

Browse files
committed
fix return type
1 parent 3dfaab8 commit 50a7bb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/cpython/pyatomic_msc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ _Py_atomic_load_int_relaxed(const int *obj)
634634
return *(volatile int *)obj;
635635
}
636636

637-
static inline int
637+
static inline char
638638
_Py_atomic_load_char_relaxed(const char *obj)
639639
{
640640
return *(volatile char *)obj;

0 commit comments

Comments
 (0)