From: Mark Andrews Date: Fri, 23 Jan 2009 01:30:03 +0000 (+0000) Subject: move formating out of msgcat X-Git-Tag: v9.4.3-P1~1^5~43 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=cd9dfc6534bd71b929b4ce432eeaea672691c747;p=thirdparty%2Fbind9.git move formating out of msgcat --- diff --git a/lib/isc/timer.c b/lib/isc/timer.c index beceb8e45a8..656258dae62 100644 --- a/lib/isc/timer.c +++ b/lib/isc/timer.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: timer.c,v 1.73.18.12 2009/01/22 23:46:01 tbox Exp $ */ +/* $Id: timer.c,v 1.73.18.13 2009/01/23 01:30:03 marka Exp $ */ /*! \file */ @@ -677,12 +677,13 @@ dispatch(isc_timermgr_t *manager, isc_time_t *now) { if (need_schedule) { result = schedule(timer, now, ISC_FALSE); if (result != ISC_R_SUCCESS) - UNEXPECTED_ERROR(__FILE__, __LINE__, "%s", + UNEXPECTED_ERROR(__FILE__, __LINE__, + "%s: %u", isc_msgcat_get(isc_msgcat, ISC_MSGSET_TIMER, ISC_MSG_SCHEDFAIL, - "couldn't " - "schedule timer: %u"), + "couldn't schedule " + "timer"), result); } } else {