mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
521887caca
time_t, not a long - Respect CC (self) PR: 95148 Submitted by: Ed Schouten <ed@fxq.nl>
12 lines
258 B
C
12 lines
258 B
C
--- totd.c.orig Wed Feb 2 12:10:31 2005
|
|
+++ totd.c Wed Apr 12 14:56:16 2006
|
|
@@ -504,7 +504,7 @@
|
|
tvp = &tv_out;
|
|
if (T.debug > 2)
|
|
syslog (LOG_DEBUG, "next timeout after %ld s.",
|
|
- tv_out.tv_sec);
|
|
+ (long)tv_out.tv_sec);
|
|
}
|
|
}
|
|
|