File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -956,25 +956,25 @@ _Py_atomic_store_char_relaxed(char *obj, char value)
956956static inline void
957957_Py_atomic_store_uchar_relaxed (unsigned char * obj , unsigned char value )
958958{
959- * (volatile unsigned char * )obj = value ;
959+ * (volatile unsigned char * )obj = value ;
960960}
961961
962962static inline void
963963_Py_atomic_store_short_relaxed (short * obj , short value )
964964{
965- * (volatile short * )obj = value ;
965+ * (volatile short * )obj = value ;
966966}
967967
968968static inline void
969969_Py_atomic_store_ushort_relaxed (unsigned short * obj , unsigned short value )
970970{
971- * (volatile unsigned short * )obj = value ;
971+ * (volatile unsigned short * )obj = value ;
972972}
973973
974974static inline void
975975_Py_atomic_store_uint_release (unsigned int * obj , unsigned int value )
976976{
977- * (volatile unsigned int * )obj = value ;
977+ * (volatile unsigned int * )obj = value ;
978978}
979979
980980static inline void
@@ -998,7 +998,7 @@ _Py_atomic_store_double_relaxed(double *obj, double value)
998998static inline void
999999_Py_atomic_store_llong_relaxed (long long * obj , long long value )
10001000{
1001- * (volatile long long * )obj = value ;
1001+ * (volatile long long * )obj = value ;
10021002}
10031003
10041004
You can’t perform that action at this time.
0 commit comments