From d98bd39d601f4a9012fddf5ed634801b991823c5 Mon Sep 17 00:00:00 2001 From: niftynei Date: Tue, 1 Dec 2020 11:33:16 -0600 Subject: [PATCH] dual_open: neaten spacing for macro --- lightningd/dual_open_control.c | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/lightningd/dual_open_control.c b/lightningd/dual_open_control.c index e78636a05..0de1ed308 100644 --- a/lightningd/dual_open_control.c +++ b/lightningd/dual_open_control.c @@ -306,15 +306,16 @@ hook_extract_amount(struct subd *dualopend, return true; } -#define CHECK_CHANGES(set, dir) \ - do { \ - for (size_t i = 0; i < tal_count(set); i++) { \ - ok = psbt_get_serial_id(&set[i].dir.unknowns, &serial_id); \ - assert(ok); \ - if (serial_id % 2 != opener_side) \ - return true; \ - } \ - } while (false) \ +#define CHECK_CHANGES(set, dir) \ + do { \ + for (size_t i = 0; i < tal_count(set); i++) { \ + ok = psbt_get_serial_id(&set[i].dir.unknowns, \ + &serial_id); \ + assert(ok); \ + if (serial_id % 2 != opener_side) \ + return true; \ + } \ + } while (false) static bool psbt_side_contribs_changed(struct wally_psbt *orig, struct wally_psbt *new,