From: Thiemo Seufer Date: Thu, 4 Oct 2007 22:48:45 +0000 (+0000) Subject: 1.0.10.17: Reformat string, and fix compiler warning. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=e5129834a1348cbe313d31fc2743e7f8f73848a6;p=sbcl.git 1.0.10.17: Reformat string, and fix compiler warning. --- diff --git a/src/runtime/gc-common.c b/src/runtime/gc-common.c index 3a76955..a615b66 100644 --- a/src/runtime/gc-common.c +++ b/src/runtime/gc-common.c @@ -1722,7 +1722,12 @@ scav_vector (lispobj *where, lispobj object) * and fills it with zero, but some other thread simulatenously * sets the header in %%PUTHASH. */ - fprintf(stderr, "Warning: no pointer at %x in hash table: this indicates non-fatal corruption caused by concurrent access to a hash-table from multiple threads. Any accesses to hash-tables shared between threads should be protected by locks.\n", &where[2]); + fprintf(stderr, + "Warning: no pointer at %lx in hash table: this indicates " + "non-fatal corruption caused by concurrent access to a " + "hash-table from multiple threads. Any accesses to " + "hash-tables shared between threads should be protected " + "by locks.\n", (unsigned long)&where[2]); // We've scavenged three words. return 3; } diff --git a/version.lisp-expr b/version.lisp-expr index 0a507c0..e19d770 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.10.16" +"1.0.10.17"