diff --git a/src/builtin_functions.c b/src/builtin_functions.c index 9071414671387add44a932775f755a83e9c81c62..13be00f1c5feb93a0955c1d4a320e6e6427aa320 100644 --- a/src/builtin_functions.c +++ b/src/builtin_functions.c @@ -4,7 +4,7 @@ ||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h" -RCSID("$Id: builtin_functions.c,v 1.63 1998/01/29 06:02:28 hubbe Exp $"); +RCSID("$Id: builtin_functions.c,v 1.64 1998/01/29 18:10:53 grubba Exp $"); #include "interpret.h" #include "svalue.h" #include "pike_macros.h" @@ -109,14 +109,14 @@ void f_copy_value(INT32 args) void f_ctime(INT32 args) { - INT32 i; + time_t i; if(!args) error("Too few arguments to ctime()\n"); if(sp[-args].type != T_INT) error("Bad argument 1 to ctime()\n"); - i=sp[-args].u.integer; + i=(time_t)sp[-args].u.integer; pop_n_elems(args); - push_string(make_shared_string(ctime((time_t *)&i))); + push_string(make_shared_string(ctime(&i))); } void f_lower_case(INT32 args)