summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-05-05 16:55:02 +0200
committerChristian Grothoff <christian@grothoff.org>2021-05-05 16:55:02 +0200
commit51950d9e7aef67d89c93dd5b017b9dbfd1933ea0 (patch)
treeca1d646e8061f1f1b4990655e0e7ec1e07d0e467
parentbed03c0ccfeb17cad9f5f8eb7778f09290ddcc63 (diff)
downloadmerchant-51950d9e7aef67d89c93dd5b017b9dbfd1933ea0.tar.gz
merchant-51950d9e7aef67d89c93dd5b017b9dbfd1933ea0.tar.bz2
merchant-51950d9e7aef67d89c93dd5b017b9dbfd1933ea0.zip
-style fix
-rw-r--r--src/backend/taler-merchant-httpd_private-post-orders.c9
1 files 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
index 38722a47..deb888fc 100644
--- 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;
}