pkgsrc/graphics/aqsis/patches/patch-af
dmcmahill 28fc43ca12 use a time_t * as the argument to time(3) to let this compile on 64 bit systems.
Fixes recently noted compile problems on alpha.
2003-03-15 12:24:22 +00:00

13 lines
310 B
Text

$NetBSD: patch-af,v 1.1 2003/03/15 12:24:22 dmcmahill Exp $
--- aqsis/aqsis.cpp.orig Wed May 8 12:01:31 2002
+++ aqsis/aqsis.cpp Fri Mar 14 21:22:49 2003
@@ -67,6 +67,6 @@
RtVoid PrintProgress( RtFloat percent )
{
-static long tick=0;
-long now;
+static time_t tick=0;
+time_t now;
if (tick == 0)