commit 0060b1765f45c1c5695f6244e71dc049a9e6bc01
parent fbe292993f80f178bfc2905f14eb69541571d321
Author: Sebastian <sebasjm@gmail.com>
Date: Thu, 16 Jan 2025 15:18:02 -0300
-make codespell happy
Diffstat:
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/src/exchange/taler-exchange-httpd_withdraw.c b/src/exchange/taler-exchange-httpd_withdraw.c
@@ -340,21 +340,21 @@ _Static_assert (
* and optionally set the given field (with an optionally given value).
*/
#define SET_ERROR(wc, ec) \
- do \
- { (wc)->error.code = (ec); \
- (wc)->phase = PHASE_GENERATE_REPLY_ERROR; } while (0)
+ do \
+ { (wc)->error.code = (ec); \
+ (wc)->phase = PHASE_GENERATE_REPLY_ERROR; } while (0)
#define SET_ERROR_WITH_FIELD(wc, ec, field) \
- do \
- { (wc)->error.code = (ec); \
- (wc)->error.details.field = (field); \
- (wc)->phase = PHASE_GENERATE_REPLY_ERROR; } while (0)
+ do \
+ { (wc)->error.code = (ec); \
+ (wc)->error.details.field = (field); \
+ (wc)->phase = PHASE_GENERATE_REPLY_ERROR; } while (0)
#define SET_ERROR_WITH_DETAIL(wc, ec, field, value) \
- do \
- { (wc)->error.code = (ec); \
- (wc)->error.details.field = (value); \
- (wc)->phase = PHASE_GENERATE_REPLY_ERROR; } while (0)
+ do \
+ { (wc)->error.code = (ec); \
+ (wc)->error.details.field = (value); \
+ (wc)->phase = PHASE_GENERATE_REPLY_ERROR; } while (0)
/**