From: Thomas Markwalder Date: Thu, 21 Dec 2017 20:26:23 +0000 (-0500) Subject: [master] Fixed compiler warning under 32-bit systems X-Git-Tag: v4_4_0b1_f1~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d6d300fec8b26c9e854095a4a29158186b69172;p=thirdparty%2Fdhcp.git [master] Fixed compiler warning under 32-bit systems --- diff --git a/server/dhcpv6.c b/server/dhcpv6.c index 6cdee72cf..f4bdbf81f 100644 --- a/server/dhcpv6.c +++ b/server/dhcpv6.c @@ -3336,7 +3336,7 @@ void shorten_lifetimes(struct reply_state *reply, struct iasubopt *lease, " preferred: %u, valid %u", pin6_addr(&lease->addr), iasubopt_plen_str(lease), - age, threshold, + (long)age, threshold, pref_life, valid_life); break; }