[git] CMU Common Lisp branch master updated. snapshot-2013-11-4-gf3c9558
Raymond Toy
rtoy at common-lisp.net
Fri Nov 22 06:08:45 UTC 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMU Common Lisp".
The branch, master has been updated
via f3c9558971d5b0b6aa2b34feb22f44396c90ae33 (commit)
from 8674b2d2b73bf7d7402d323f8179d1312b0843f6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit f3c9558971d5b0b6aa2b34feb22f44396c90ae33
Author: Raymond Toy <toy.raymond at gmail.com>
Date: Thu Nov 21 22:08:30 2013 -0800
Fix compiler warning about using %lx with an int.
diff --git a/src/lisp/gencgc.c b/src/lisp/gencgc.c
index f06b23b..a9c3e96 100644
--- a/src/lisp/gencgc.c
+++ b/src/lisp/gencgc.c
@@ -1194,7 +1194,7 @@ gc_alloc_new_region(int nbytes, int unboxed, struct alloc_region *alloc_region)
for (p = (int *) alloc_region->start_addr;
p < (int *) alloc_region->end_addr; p++)
if (*p != 0)
- fprintf(stderr, "** new region not zero @ %lx: %lx\n",
+ fprintf(stderr, "** new region not zero @ %lx: %x\n",
(unsigned long) p, *p);
}
-----------------------------------------------------------------------
Summary of changes:
src/lisp/gencgc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
CMU Common Lisp
More information about the cmucl-cvs
mailing list