Author: Armin Rigo <[email protected]>
Branch: stmgc-c4
Changeset: r65129:2588a015d619
Date: 2013-06-30 20:05 +0200
http://bitbucket.org/pypy/pypy/changeset/2588a015d619/

Log:    Unused arg

diff --git a/rpython/rlib/rstm.py b/rpython/rlib/rstm.py
--- a/rpython/rlib/rstm.py
+++ b/rpython/rlib/rstm.py
@@ -21,7 +21,7 @@
     llop.stm_change_atomic(lltype.Signed, -1)
 
 def is_atomic():
-    return llop.stm_get_atomic(lltype.Signed, 0)
+    return llop.stm_get_atomic(lltype.Signed)
 
 def abort_info_push(instance, fieldnames):
     "Special-cased below."
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to