summaryrefslogtreecommitdiff
path: root/src/mint
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-05-01 10:06:46 +0200
committerChristian Grothoff <christian@grothoff.org>2015-05-01 10:06:46 +0200
commitad237521e982352d41127f8c19576a5a242dbbbd (patch)
tree0745921f6f20400c1dfa7e48f4fbbc6725f844e6 /src/mint
parent66355c18c859b92cf7743dbeb7e5835506ae99a7 (diff)
downloadexchange-ad237521e982352d41127f8c19576a5a242dbbbd.tar.gz
exchange-ad237521e982352d41127f8c19576a5a242dbbbd.tar.bz2
exchange-ad237521e982352d41127f8c19576a5a242dbbbd.zip
check return values
Diffstat (limited to 'src/mint')
-rw-r--r--src/mint/taler-mint-httpd_parsing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mint/taler-mint-httpd_parsing.c b/src/mint/taler-mint-httpd_parsing.c
index 450065c61..a1c189176 100644
--- a/src/mint/taler-mint-httpd_parsing.c
+++ b/src/mint/taler-mint-httpd_parsing.c
@@ -1041,7 +1041,7 @@ TMH_PARSE_amount_json (struct MHD_Connection *connection,
amount->fraction = (uint32_t) fraction;
GNUNET_assert (strlen (TMH_mint_currency_string) < TALER_CURRENCY_LEN);
strcpy (amount->currency, TMH_mint_currency_string);
- TALER_amount_normalize (amount);
+ (void) TALER_amount_normalize (amount);
return GNUNET_OK;
}