SCM_CELL in deprecated.c
authorAndy Wingo <wingo@pobox.com>
Tue, 8 Dec 2009 20:28:34 +0000 (21:28 +0100)
committerAndy Wingo <wingo@pobox.com>
Tue, 8 Dec 2009 22:13:07 +0000 (23:13 +0100)
* libguile/deprecated.c (scm_smob_free): Fix SCM_CELL macro usage.

libguile/deprecated.c

index ac10c7a..c53776c 100644 (file)
@@ -625,7 +625,7 @@ scm_smob_free (SCM obj)
      "It is no longer needed.");
 
   if (scm_smobs[n].size > 0)
-    scm_gc_free ((void *) SCM_CELL_WORD_1 (obj), 
+    scm_gc_free ((void *) SCM_SMOB_DATA_1 (obj), 
                 scm_smobs[n].size, SCM_SMOBNAME (n));
   return 0;
 }