summaryrefslogtreecommitdiff
path: root/src/include/taler_amount_lib.h
diff options
context:
space:
mode:
authorSree Harsha Totakura <sreeharsha@totakura.in>2015-03-05 17:34:54 +0100
committerSree Harsha Totakura <sreeharsha@totakura.in>2015-03-06 10:32:02 +0100
commit72c298b52e392b14592719f45f057b7eff1e56c5 (patch)
treea246391a31b2da2b659ed157af1f308c7bb8f6d4 /src/include/taler_amount_lib.h
parent51929fe759668388a36c99c9e4b1b44fcb2d55cb (diff)
downloadexchange-72c298b52e392b14592719f45f057b7eff1e56c5.tar.gz
exchange-72c298b52e392b14592719f45f057b7eff1e56c5.tar.bz2
exchange-72c298b52e392b14592719f45f057b7eff1e56c5.zip
util: use const whenever applicable
Diffstat (limited to 'src/include/taler_amount_lib.h')
-rw-r--r--src/include/taler_amount_lib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/taler_amount_lib.h b/src/include/taler_amount_lib.h
index 72f5d4ffd..1f31e1498 100644
--- a/src/include/taler_amount_lib.h
+++ b/src/include/taler_amount_lib.h
@@ -99,7 +99,7 @@ TALER_string_to_amount (const char *str,
* @return amount in network representation
*/
struct TALER_AmountNBO
-TALER_amount_hton (struct TALER_Amount d);
+TALER_amount_hton (const struct TALER_Amount d);
/**
@@ -109,7 +109,7 @@ TALER_amount_hton (struct TALER_Amount d);
* @return amount in host representation
*/
struct TALER_Amount
-TALER_amount_ntoh (struct TALER_AmountNBO dn);
+TALER_amount_ntoh (const struct TALER_AmountNBO dn);
/**