commit 51950d9e7aef67d89c93dd5b017b9dbfd1933ea0 parent bed03c0ccfeb17cad9f5f8eb7778f09290ddcc63 Author: Christian Grothoff <christian@grothoff.org> Date: Wed, 5 May 2021 16:55:02 +0200 -style fix Diffstat:
| M | src/backend/taler-merchant-httpd_private-post-orders.c | | | 9 | +++++---- |
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/src/backend/taler-merchant-httpd_private-post-orders.c b/src/backend/taler-merchant-httpd_private-post-orders.c @@ -1024,10 +1024,11 @@ add_payment_details (struct MHD_Connection *connection, wm = hc->instance->wm_head; while ( (NULL != wm) && - (GNUNET_YES != wm->active) && - (NULL == payment_target || - 0 != strcasecmp (payment_target, - wm->wire_method) ) ) { + (! wm->active) && + ( (NULL == payment_target) || + (0 != strcasecmp (payment_target, + wm->wire_method) ) ) ) + { wm = wm->next; }