From a8741caa54fa6fc14bc290c40cc97361db850953 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Sun, 12 Jul 1998 00:10:02 +0000 Subject: * eval.c, filesys.c, fluids.c, gc.c, gh_data.c, init.c, kw.c, net_db.c, posix.c, print.c, regex-posix.c, scmsigs.c, socket.c, stime.c, symbols.c, unif.c, vectors.c, weaks.c: Removed third argument in call to scm_make_vector. --- libguile/filesys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libguile/filesys.c') diff --git a/libguile/filesys.c b/libguile/filesys.c index 6bff65346..dff946f08 100644 --- a/libguile/filesys.c +++ b/libguile/filesys.c @@ -331,7 +331,7 @@ static SCM scm_stat2scm (stat_temp) struct stat *stat_temp; { - SCM ans = scm_make_vector (SCM_MAKINUM (15), SCM_UNSPECIFIED, SCM_BOOL_F); + SCM ans = scm_make_vector (SCM_MAKINUM (15), SCM_UNSPECIFIED); SCM *ve = SCM_VELTS (ans); ve[0] = scm_ulong2num ((unsigned long) stat_temp->st_dev); -- cgit v1.2.3