diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2011-12-16 15:38:11 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2011-12-16 15:38:11 +0000 |
commit | 5d0ce6a552e5b6a77a4e31881ab348fcf27a9237 (patch) | |
tree | 86a120ed9ca63d0550f1d3995f569866a93d5302 /libexec | |
parent | edf500a77a14a3a06a6888943f6b2bacb497dc94 (diff) | |
download | src-test2-5d0ce6a552e5b6a77a4e31881ab348fcf27a9237.tar.gz src-test2-5d0ce6a552e5b6a77a4e31881ab348fcf27a9237.zip |
Notes
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/bootpd/bootpgw/bootpgw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/bootpd/bootpgw/bootpgw.c b/libexec/bootpd/bootpgw/bootpgw.c index f180fd66713f..120d668aca86 100644 --- a/libexec/bootpd/bootpgw/bootpgw.c +++ b/libexec/bootpd/bootpgw/bootpgw.c @@ -452,7 +452,7 @@ main(argc, argv) } if (!(readfds & (1 << s))) { report(LOG_INFO, "exiting after %ld minutes of inactivity", - actualtimeout.tv_sec / 60); + (long)(actualtimeout.tv_sec / 60)); exit(0); } ra_len = sizeof(recv_addr); |