diff options
Diffstat (limited to 'libguile/gc.c')
-rw-r--r-- | libguile/gc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/gc.c b/libguile/gc.c index 5b3dfa471..80b96d667 100644 --- a/libguile/gc.c +++ b/libguile/gc.c @@ -512,9 +512,9 @@ scm_igc (const char *what) fprintf (stderr,"gc reason %s\n", what); fprintf (stderr, - SCM_NULLP (*SCM_FREELIST_LOC (scm_i_freelist)) + scm_is_null (*SCM_FREELIST_LOC (scm_i_freelist)) ? "*" - : (SCM_NULLP (*SCM_FREELIST_LOC (scm_i_freelist2)) ? "o" : "m")); + : (scm_is_null (*SCM_FREELIST_LOC (scm_i_freelist2)) ? "o" : "m")); #endif /* During the critical section, only the current thread may run. */ |