aboutsummaryrefslogtreecommitdiffstats
path: root/funcs/func_math.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-04 23:45:05 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-04 23:45:05 +0000
commit29a53bd6a73fac0f959ff3f68917f4e67dda34e9 (patch)
tree88fcb231caed305f7f8a083a22c556ae83212730 /funcs/func_math.c
parent5aceb2142821b5855045029d0c9c2dc6267c25ed (diff)
Merged revisions 67162 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ................ r67162 | tilghman | 2007-06-04 18:43:01 -0500 (Mon, 04 Jun 2007) | 10 lines Merged revisions 67161 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r67161 | tilghman | 2007-06-04 18:41:49 -0500 (Mon, 04 Jun 2007) | 2 lines According to MATH, 0+1181000386 = 1181000448. Oops. ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@67164 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs/func_math.c')
-rw-r--r--funcs/func_math.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/funcs/func_math.c b/funcs/func_math.c
index bdcbb69ff..ad42d190d 100644
--- a/funcs/func_math.c
+++ b/funcs/func_math.c
@@ -70,9 +70,9 @@ enum TypeOfResult {
static int math(struct ast_channel *chan, const char *cmd, char *parse,
char *buf, size_t len)
{
- float fnum1;
- float fnum2;
- float ftmp = 0;
+ double fnum1;
+ double fnum2;
+ double ftmp = 0;
char *op;
int iaction = -1;
int type_of_result = FLOAT_RESULT;
@@ -180,12 +180,12 @@ static int math(struct ast_channel *chan, const char *cmd, char *parse,
return -1;
}
- if (sscanf(mvalue1, "%f", &fnum1) != 1) {
+ if (sscanf(mvalue1, "%lf", &fnum1) != 1) {
ast_log(LOG_WARNING, "'%s' is not a valid number\n", mvalue1);
return -1;
}
- if (sscanf(mvalue2, "%f", &fnum2) != 1) {
+ if (sscanf(mvalue2, "%lf", &fnum2) != 1) {
ast_log(LOG_WARNING, "'%s' is not a valid number\n", mvalue2);
return -1;
}