Removed an extraneous semicolon
diff --git a/Objects/setobject.c b/Objects/setobject.c
index e275bcc..a99beec 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -1439,7 +1439,7 @@
     while ((key = PyIter_Next(it)) != NULL) {
         int rv;
         setentry entry;
-        long hash = PyObject_Hash(key);;
+        long hash = PyObject_Hash(key);
 
         if (hash == -1) {
             Py_DECREF(key);