svn commit: r272853 - stable/10/sbin/route
Hiroki Sato
hrs at FreeBSD.org
Thu Oct 9 23:15:27 UTC 2014
Author: hrs
Date: Thu Oct 9 23:15:26 2014
New Revision: 272853
URL: https://svnweb.freebsd.org/changeset/base/272853
Log:
MFC r256715:
Use long explicitly for the time difference.
Modified:
stable/10/sbin/route/route.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sbin/route/route.c
==============================================================================
--- stable/10/sbin/route/route.c Thu Oct 9 23:14:02 2014 (r272852)
+++ stable/10/sbin/route/route.c Thu Oct 9 23:15:26 2014 (r272853)
@@ -1780,7 +1780,8 @@ print_getmsg(struct rt_msghdr *rtm, int
clock_gettime(CLOCK_REALTIME_FAST, &ts);
else
ts.tv_sec = 0;
- printf("%8ld%c\n", rtm->rtm_rmx.rmx_expire - ts.tv_sec, lock(EXPIRE));
+ printf("%8ld%c\n", (long)(rtm->rtm_rmx.rmx_expire - ts.tv_sec),
+ lock(EXPIRE));
#undef lock
#undef msec
#define RTA_IGN (RTA_DST|RTA_GATEWAY|RTA_NETMASK|RTA_IFP|RTA_IFA|RTA_BRD)
More information about the svn-src-stable
mailing list