From 47f65caf30817d7bd5c60995bb679bef154e5aaf Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Tue, 23 Jan 2001 02:27:19 +0000 Subject: [PATCH] The msgcat text contained an extra %s. --- lib/isc/pthreads/condition.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/isc/pthreads/condition.c b/lib/isc/pthreads/condition.c index 317c1cdd5d..fb3bdffe68 100644 --- a/lib/isc/pthreads/condition.c +++ b/lib/isc/pthreads/condition.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: condition.c,v 1.29 2001/01/09 21:57:59 bwelling Exp $ */ +/* $Id: condition.c,v 1.30 2001/01/23 02:27:19 bwelling Exp $ */ #include @@ -63,7 +63,7 @@ isc_condition_waituntil(isc_condition_t *c, isc_mutex_t *m, isc_time_t *t) { UNEXPECTED_ERROR(__FILE__, __LINE__, "pthread_cond_timedwait() %s %s", isc_msgcat_get(isc_msgcat, ISC_MSGSET_GENERAL, - ISC_MSG_RETURNED, "returned %s"), + ISC_MSG_RETURNED, "returned"), strerror(presult)); return (ISC_R_UNEXPECTED); }