From 8bd2b6923c282eee7d957bda830e74a0e5285f8f Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Wed, 27 Jul 2011 07:45:55 +0000 Subject: [PATCH] silence 'expression result unused' from clang --- bin/tests/tasks/t_tasks.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/tests/tasks/t_tasks.c b/bin/tests/tasks/t_tasks.c index 3552c8a60b..f4cedf1c07 100644 --- a/bin/tests/tasks/t_tasks.c +++ b/bin/tests/tasks/t_tasks.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: t_tasks.c,v 1.48 2011/07/27 07:02:21 marka Exp $ */ +/* $Id: t_tasks.c,v 1.49 2011/07/27 07:45:55 marka Exp $ */ #include @@ -807,14 +807,14 @@ t_tasks3(void) { T3_flag = 1; isc_result = isc_condition_signal(&T3_cv); if (isc_result != ISC_R_SUCCESS) { - t_info("isc_task_send failed %s\n", + t_info("isc_condition_signal failed %s\n", isc_result_totext(isc_result)); ++T3_nprobs; } isc_result = isc_mutex_unlock(&T3_mx); if (isc_result != ISC_R_SUCCESS) { - t_info("isc_task_send failed %s\n", + t_info("isc_mutex_unlock failed %s\n", isc_result_totext(isc_result)); ++T3_nprobs; }