Skip to content

Commit c9e1c79

Browse files
committed
+1
1 parent d3d8268 commit c9e1c79

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_decimal/_decimal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5921,7 +5921,7 @@ static Py_hash_t
59215921
dec_hash(PyObject *op)
59225922
{
59235923
PyDecObject *self = _PyDecObject_CAST(op);
5924-
Py_hash_t hash = FT_ATOMIC_LOAD_SSIZE_RELAXED(self->hash)
5924+
Py_hash_t hash = FT_ATOMIC_LOAD_SSIZE_RELAXED(self->hash);
59255925

59265926
if (hash == -1) {
59275927
hash = _dec_hash(self);

0 commit comments

Comments
 (0)