diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-08-28 20:17:55 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-08-28 20:17:55 +0200 |
commit | 5b6d9300d7e4ddd0d12a12d0c254c1c5857467cf (patch) | |
tree | 5cc14606bf0945ffc5841ab417d092afc4376e4b /src/lib/merchant_api_common.c | |
parent | 84398cb8936a5fbe6006710405f11e5d259fb1b7 (diff) |
-style fixes
Diffstat (limited to 'src/lib/merchant_api_common.c')
-rw-r--r-- | src/lib/merchant_api_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/merchant_api_common.c b/src/lib/merchant_api_common.c index f5569ce3..d4f1c9c0 100644 --- a/src/lib/merchant_api_common.c +++ b/src/lib/merchant_api_common.c @@ -86,7 +86,7 @@ TALER_MERCHANT_parse_error_details_ (const json_t *response, } else { - hr->exchange_code = (enum TALER_ErrorCode) json_integer_value (jc); + hr->exchange_code = (enum TALER_ErrorCode) (int) json_integer_value (jc); } /* handle 'exchange-hint' */ |