]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
use UNUSED(x) not 'x = x'
authorMark Andrews <marka@isc.org>
Wed, 27 Jul 2011 07:06:54 +0000 (07:06 +0000)
committerMark Andrews <marka@isc.org>
Wed, 27 Jul 2011 07:06:54 +0000 (07:06 +0000)
bin/tests/tasks/t_tasks.c

index 398c47ec4a0b42bb7cba7724db15c87e718bfa7f..84444cd1edfdf48d588369250ed3b24055a62878 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: t_tasks.c,v 1.42.424.5 2011/03/18 23:47:15 tbox Exp $ */
+/* $Id: t_tasks.c,v 1.42.424.6 2011/07/27 07:06:54 marka Exp $ */
 
 #include <config.h>
 
@@ -68,6 +68,7 @@ t1_callback(isc_task_t *task, isc_event_t *event) {
 
 static void
 t1_shutdown(isc_task_t *task, isc_event_t *event) {
+
        UNUSED(task);
 
        t_info("shutdown %s\n", (char *)event->ev_arg);
@@ -76,6 +77,7 @@ t1_shutdown(isc_task_t *task, isc_event_t *event) {
 
 static void
 my_tick(isc_task_t *task, isc_event_t *event) {
+
        UNUSED(task);
 
        t_info("%s\n", (char *)event->ev_arg);
@@ -400,7 +402,7 @@ t2_shutdown(isc_task_t *task, isc_event_t *event) {
 
        isc_result_t    isc_result;
 
-       task = task; /* notused */
+       UNUSED(task);
 
        if (event->ev_arg != NULL) {
                isc_task_destroy((isc_task_t**) &event->ev_arg);
@@ -594,7 +596,8 @@ static      int             T3_nprobs;
 
 static void
 t3_sde1(isc_task_t *task, isc_event_t *event) {
-       task = task;
+
+       UNUSED(task);
 
        if (T3_nevents != T3_NEVENTS) {
                t_info("Some events were not processed\n");
@@ -612,7 +615,7 @@ t3_sde1(isc_task_t *task, isc_event_t *event) {
 static void
 t3_sde2(isc_task_t *task, isc_event_t *event) {
 
-       task = task;
+       UNUSED(task);
 
        if (T3_nevents != T3_NEVENTS) {
                t_info("Some events were not processed\n");
@@ -631,7 +634,7 @@ static void
 t3_event1(isc_task_t *task, isc_event_t *event) {
        isc_result_t    isc_result;
 
-       task = task;
+       UNUSED(task);
 
        isc_result = isc_mutex_lock(&T3_mx);
        if (isc_result != ISC_R_SUCCESS) {
@@ -654,7 +657,7 @@ t3_event1(isc_task_t *task, isc_event_t *event) {
 
 static void
 t3_event2(isc_task_t *task, isc_event_t *event) {
-       task = task;
+       UNUSED(task);
 
        ++T3_nevents;
        isc_event_free(&event);
@@ -1301,7 +1304,7 @@ static void
 t10_event1(isc_task_t *task, isc_event_t *event) {
        isc_result_t    isc_result;
 
-       task = task;
+       UNUSED(task);
 
        isc_result = isc_mutex_lock(&T10_mx);
        if (isc_result != ISC_R_SUCCESS) {
@@ -1336,7 +1339,7 @@ t10_event2(isc_task_t *task, isc_event_t *event) {
        int     type_match;
        int     tag_match;
 
-       task = task;
+       UNUSED(task);
 
        sender_match = 0;
        type_match = 0;
@@ -1392,7 +1395,7 @@ static void
 t10_sde(isc_task_t *task, isc_event_t *event) {
        isc_result_t    isc_result;
 
-       task = task;
+       UNUSED(task);
 
        isc_result = isc_mutex_lock(&T10_mx);
        if (isc_result != ISC_R_SUCCESS) {
@@ -1780,7 +1783,7 @@ static void
 t11_event1(isc_task_t *task, isc_event_t *event) {
        isc_result_t    isc_result;
 
-       task = task;
+       UNUSED(task);
 
        isc_result = isc_mutex_lock(&T11_mx);
        if (isc_result != ISC_R_SUCCESS) {