]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
silence 'expression result unused' from clang
authorMark Andrews <marka@isc.org>
Wed, 27 Jul 2011 07:45:06 +0000 (07:45 +0000)
committerMark Andrews <marka@isc.org>
Wed, 27 Jul 2011 07:45:06 +0000 (07:45 +0000)
bin/tests/tasks/t_tasks.c

index 84444cd1edfdf48d588369250ed3b24055a62878..36241f4cfa13c79cf671bc7e746b627d7b92a914 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: t_tasks.c,v 1.42.424.6 2011/07/27 07:06:54 marka Exp $ */
+/* $Id: t_tasks.c,v 1.42.424.7 2011/07/27 07:45:06 marka Exp $ */
 
 #include <config.h>
 
@@ -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;
        }