1.0.10.17: Reformat string, and fix compiler warning.
authorThiemo Seufer <ths@networkno.de>
Thu, 4 Oct 2007 22:48:45 +0000 (22:48 +0000)
committerThiemo Seufer <ths@networkno.de>
Thu, 4 Oct 2007 22:48:45 +0000 (22:48 +0000)
src/runtime/gc-common.c
version.lisp-expr

index 3a76955..a615b66 100644 (file)
@@ -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;
     }
index 0a507c0..e19d770 100644 (file)
@@ -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"