From: Automerge Script Date: Tue, 5 Jun 2007 00:24:22 +0000 (+0000) Subject: automerge commit X-Git-Tag: 1.2.19-netsec~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7699bb25d7e89f21e3d4efe5479b082f57f4f81c;p=thirdparty%2Fasterisk.git automerge commit git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2-netsec@67208 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/funcs/func_math.c b/funcs/func_math.c index a838e4f998..4795efcc62 100644 --- a/funcs/func_math.c +++ b/funcs/func_math.c @@ -67,9 +67,9 @@ static char *builtin_function_math(struct ast_channel *chan, char *cmd, char *da int argc; char *argv[2]; char *args; - 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; @@ -159,12 +159,12 @@ static char *builtin_function_math(struct ast_channel *chan, char *cmd, char *da return NULL; } - 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 NULL; } - 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 NULL; }