diff options
author | Andy Wingo <wingo@oblong.net> | 2009-03-17 15:54:42 +0100 |
---|---|---|
committer | Andy Wingo <wingo@oblong.net> | 2009-03-17 15:54:42 +0100 |
commit | a37593c7c8d518bbd0ff3b1b1362a5a6213027fc (patch) | |
tree | 9aedb7962b2927642b8e808f664bb676bce0b31d /libguile/procs.c | |
parent | b6b5d31e35d39d10b932af8a74612330f7b40961 (diff) | |
parent | e95d11110b7af0f528404d28209c3a464ab7074d (diff) | |
download | guile-a37593c7c8d518bbd0ff3b1b1362a5a6213027fc.tar.gz |
Merge commit 'e95d11110b7af0f528404d28209c3a464ab7074d' into vm-check
Diffstat (limited to 'libguile/procs.c')
-rw-r--r-- | libguile/procs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/procs.c b/libguile/procs.c index edf398a04..6f8d206f6 100644 --- a/libguile/procs.c +++ b/libguile/procs.c @@ -47,14 +47,14 @@ scm_t_subr_entry *scm_subr_table; /* Increased to 800 on 2001-05-07 -- Guile now has 779 primitives on startup, 786 with guile-readline. 'martin */ -long scm_subr_table_size = 0; -long scm_subr_table_room = 800; +static unsigned long scm_subr_table_size = 0; +static unsigned long scm_subr_table_room = 800; SCM scm_c_make_subr (const char *name, long type, SCM (*fcn) ()) { register SCM z; - long entry; + unsigned long entry; if (scm_subr_table_size == scm_subr_table_room) { |