X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fgc-common.c;h=a615b66936687e2b2cec13dc7e1a058f597bce44;hb=2529c316d05494f2bcdeccf98c3a6298ecd08d7d;hp=3a76955eb7f7512bfc1b3e0a28fcbaba75d98960;hpb=f318d0b1654042ed8f1b887852a9ba1f539208e4;p=sbcl.git 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; }