* src/mm/cacao-gc/rootset.c (rootset_from_thread): Fixed typo.
authormichi <none@none>
Sun, 10 Jun 2007 14:10:04 +0000 (14:10 +0000)
committermichi <none@none>
Sun, 10 Jun 2007 14:10:04 +0000 (14:10 +0000)
--HG--
branch : exact-gc

src/mm/cacao-gc/rootset.c

index 06f93a44851fee8908fcc4dcc07698a38235f70a..80579d20c9822ad592cb0c73fe4ef486bad13358 100644 (file)
@@ -236,7 +236,7 @@ void rootset_from_thread(threadobject *thread, rootset_t *rs)
        /* now inspect the source state to compile the root set */
        for (sf = ss->frames; sf != NULL; sf = sf->down) {
 
-               GC_LOG( printf("Source Frame: localcount=%d, stackdepth=%d, syncslots=%d\n", sf->javalocalcount, sf->javastackdepth, sf->syncslots); );
+               GC_LOG( printf("Source Frame: localcount=%d, stackdepth=%d, syncslots=%d\n", sf->javalocalcount, sf->javastackdepth, sf->syncslotcount); );
 
                for (i = 0; i < sf->javalocalcount; i++) {