Author: Stefano Rivera <[email protected]>
Branch: 
Changeset: r83409:37a69ad9f918
Date: 2016-03-27 21:29 -0400
http://bitbucket.org/pypy/pypy/changeset/37a69ad9f918/

Log:    Only %d is supported in rpython

diff --git a/rpython/jit/backend/arm/detect.py 
b/rpython/jit/backend/arm/detect.py
--- a/rpython/jit/backend/arm/detect.py
+++ b/rpython/jit/backend/arm/detect.py
@@ -99,7 +99,7 @@
                  (ord(buf[i+7]) << 24))
         return a_val
 
-    raise KeyError('failed to find auxval type: %i' % type_)
+    raise KeyError('failed to find auxval type: %d' % type_)
 
 
 def detect_neon():
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to