From: ceriel Date: Tue, 1 Sep 1987 14:18:20 +0000 (+0000) Subject: time must be called with a 0-pointer, not with 0! Erikje toch! X-Git-Tag: release-5-5~3857 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=dd320002c2030b41457466b7e57f3f536d155b78;p=ack.git time must be called with a 0-pointer, not with 0! Erikje toch! --- diff --git a/modules/src/system/time.c b/modules/src/system/time.c index 5fe9f9f0b..9597823e9 100644 --- a/modules/src/system/time.c +++ b/modules/src/system/time.c @@ -9,5 +9,5 @@ long time(); long sys_time() { - return time(0); + return time((long *) 0); }