mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-24 12:20:20 +02:00
* 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.
This commit is contained in:
parent
a61ef59b0b
commit
a8741caa54
17 changed files with 27 additions and 35 deletions
|
@ -167,7 +167,7 @@ scm_times (void)
|
|||
struct tms t;
|
||||
clock_t rv;
|
||||
|
||||
SCM result = scm_make_vector (SCM_MAKINUM(5), SCM_UNDEFINED, SCM_UNDEFINED);
|
||||
SCM result = scm_make_vector (SCM_MAKINUM(5), SCM_UNDEFINED);
|
||||
rv = times (&t);
|
||||
if (rv == -1)
|
||||
scm_syserror (s_times);
|
||||
|
@ -245,7 +245,7 @@ scm_gettimeofday (void)
|
|||
static SCM
|
||||
filltime (struct tm *bd_time, int zoff, char *zname)
|
||||
{
|
||||
SCM result = scm_make_vector(SCM_MAKINUM(11), SCM_UNDEFINED, SCM_UNDEFINED);
|
||||
SCM result = scm_make_vector (SCM_MAKINUM(11), SCM_UNDEFINED);
|
||||
|
||||
SCM_VELTS (result)[0] = SCM_MAKINUM (bd_time->tm_sec);
|
||||
SCM_VELTS (result)[1] = SCM_MAKINUM (bd_time->tm_min);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue