diff options
author | steve <steve@FreeBSD.org> | 2000-08-08 11:10:50 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2000-08-08 11:10:50 +0800 |
commit | 2d5208b5d23526d9fa71a607decf69e63d16d742 (patch) | |
tree | fd4a051a3ccfd4f03f1d6346e44e149b7def98a7 | |
parent | 0b8a7c9b35faaa035f8a461421b240292668b7b7 (diff) | |
download | freebsd-ports-gnome-2d5208b5d23526d9fa71a607decf69e63d16d742.tar.gz freebsd-ports-gnome-2d5208b5d23526d9fa71a607decf69e63d16d742.tar.zst freebsd-ports-gnome-2d5208b5d23526d9fa71a607decf69e63d16d742.zip |
time(3) returns a time_t and not a long.
-rw-r--r-- | lang/logo/files/patch-ad | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/logo/files/patch-ad b/lang/logo/files/patch-ad new file mode 100644 index 000000000000..059185dc11d4 --- /dev/null +++ b/lang/logo/files/patch-ad @@ -0,0 +1,11 @@ +--- init.c.orig Sun Aug 6 21:20:35 2000 ++++ init.c Sun Aug 6 21:20:50 2000 +@@ -363,7 +363,7 @@ + } + + void init(void) { +- extern long time(); ++ extern time_t time(); + int i = 0; + NODE *proc = NIL, *pname = NIL, *cnd = NIL; + |