[pypy-commit] pypy stm: Break a line that is definitely too long in the log.

arigo noreply at buildbot.pypy.org
Thu Nov 3 11:50:44 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: stm
Changeset: r48693:b4212b951b97
Date: 2011-11-03 11:50 +0100
http://bitbucket.org/pypy/pypy/changeset/b4212b951b97/

Log:	Break a line that is definitely too long in the log.

diff --git a/pypy/translator/stm/src_stm/et.c b/pypy/translator/stm/src_stm/et.c
--- a/pypy/translator/stm/src_stm/et.c
+++ b/pypy/translator/stm/src_stm/et.c
@@ -632,7 +632,7 @@
     for (i=0; i<SPINLOOP_REASONS; i++)
       num_spinloops += d->num_spinloops[i];
 
-    p += sprintf(p, "thread %lx: %d commits, %d aborts ",
+    p += sprintf(p, "thread %lx: %d commits, %d aborts\n",
                  d->my_lock_word,
                  d->num_commits,
                  num_aborts);


More information about the pypy-commit mailing list