diff options
Diffstat (limited to 'libguile/smob.c')
-rw-r--r-- | libguile/smob.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libguile/smob.c b/libguile/smob.c index 4bf826fc2..0e54b504c 100644 --- a/libguile/smob.c +++ b/libguile/smob.c @@ -62,7 +62,7 @@ scm_smobfuns *scm_smobs; long scm_newsmob (smob) - scm_smobfuns *smob; + const scm_smobfuns *smob; { char *tmp; if (255 <= scm_numsmob) @@ -102,7 +102,7 @@ freeprint (SCM exp, } -static scm_smobfuns freecell = +static const scm_smobfuns freecell = { 0, scm_free0, @@ -110,7 +110,7 @@ static scm_smobfuns freecell = 0 }; -static scm_smobfuns flob = +static const scm_smobfuns flob = { 0, /*flofree*/ 0, @@ -118,7 +118,7 @@ static scm_smobfuns flob = scm_floequal }; -static scm_smobfuns bigob = +static const scm_smobfuns bigob = { 0, /*bigfree*/ 0, |