Author: Richard Plangger <[email protected]>
Branch: vecopt
Changeset: r78263:58b4e8859909
Date: 2015-06-23 14:52 +0200
http://bitbucket.org/pypy/pypy/changeset/58b4e8859909/

Log:    missing format character

diff --git a/rpython/jit/metainterp/warmspot.py 
b/rpython/jit/metainterp/warmspot.py
--- a/rpython/jit/metainterp/warmspot.py
+++ b/rpython/jit/metainterp/warmspot.py
@@ -57,8 +57,8 @@
             del self.t[-1]
         ns = (end - start) * 10**9
         debug_start("xxx-clock-stop")
-        debug_print("name: %s id(jdsd): %s now: %ns exe time: %dns fail? %d 
vec? %d" % \
-                    (self.name, self.unique_id, int(end*10**9), int(ns), 
int(fail), int(self.vec)))
+        debug_print("name: %s id(jdsd): %s now: %dns exe time: %dns fail? %d 
vec? %d" % \
+                    (self.name, self.unique_id, int(end)*10**9, int(ns), 
int(fail), int(self.vec)))
         debug_stop("xxx-clock-stop")
 
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to