From 98b6026036913bed65b6e121c86580ebd92bd715 Mon Sep 17 00:00:00 2001 From: Alexander Barkov Date: Thu, 14 Jan 2016 17:23:23 +0400 Subject: Adding "const" qualifier to the argument of decimal_actual_fraction(). --- include/decimal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/decimal.h') diff --git a/include/decimal.h b/include/decimal.h index 2adeb824318..39d617ae08d 100644 --- a/include/decimal.h +++ b/include/decimal.h @@ -51,7 +51,7 @@ int decimal2longlong(const decimal_t *from, longlong *to); int longlong2decimal(longlong from, decimal_t *to); int decimal2double(const decimal_t *from, double *to); int double2decimal(double from, decimal_t *to); -int decimal_actual_fraction(decimal_t *from); +int decimal_actual_fraction(const decimal_t *from); int decimal2bin(const decimal_t *from, uchar *to, int precision, int scale); int bin2decimal(const uchar *from, decimal_t *to, int precision, int scale); -- cgit v1.2.1