diff options
Diffstat (limited to 'src/amount.h')
-rw-r--r-- | src/amount.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amount.h b/src/amount.h index 7abaa1c9..5638abc9 100644 --- a/src/amount.h +++ b/src/amount.h @@ -347,7 +347,7 @@ public: amount_t roundto(int places) const { amount_t temp(*this); - temp.in_place_round(); + temp.in_place_roundto(places); return temp; } void in_place_roundto(int places); |