From 64ba1babb87dcaa01548a720c17cd7353bd9b482 Mon Sep 17 00:00:00 2001 From: Shawn Routhier Date: Wed, 29 Dec 2010 21:44:26 +0000 Subject: [PATCH] Update for 22033 - Remove printing of seconds value to avoid issues with printing it in an OS agnostic way. --- common/dispatch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/dispatch.c b/common/dispatch.c index 76080bd4c..efb0dba39 100644 --- a/common/dispatch.c +++ b/common/dispatch.c @@ -254,8 +254,8 @@ void add_timeout (when, where, what, ref, unref) sec = 0; usec = 0; } else if (sec > DHCP_SEC_MAX) { - log_error("Timeout requested too large %lld " - "reducing to 2^^32-1", sec); + log_error("Timeout requested too large " + "reducing to 2^^32-1"); sec = DHCP_SEC_MAX; usec = 0; } else if (usec < 0) { -- 2.47.3