build cleanup.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6824 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
6c6cc0c0c8
commit
2737686af5
|
@ -138,15 +138,15 @@ case EXPR_NODEFUNC_MIN:
|
||||||
/* max */
|
/* max */
|
||||||
case EXPR_NODEFUNC_MAX:
|
case EXPR_NODEFUNC_MAX:
|
||||||
{
|
{
|
||||||
int pos;
|
int tmppos;
|
||||||
|
|
||||||
err = exprEvalNode(obj, nodes->data.function.nodes, 0, &d1);
|
err = exprEvalNode(obj, nodes->data.function.nodes, 0, &d1);
|
||||||
|
|
||||||
if(!err)
|
if(!err)
|
||||||
{
|
{
|
||||||
for(pos = 1; pos < nodes->data.function.nodecount; pos++)
|
for(tmppos = 1; tmppos < nodes->data.function.nodecount; tmppos++)
|
||||||
{
|
{
|
||||||
err = exprEvalNode(obj, nodes->data.function.nodes, pos, &d2);
|
err = exprEvalNode(obj, nodes->data.function.nodes, tmppos, &d2);
|
||||||
if(!err)
|
if(!err)
|
||||||
{
|
{
|
||||||
if(d2 > d1)
|
if(d2 > d1)
|
||||||
|
@ -1015,7 +1015,7 @@ case EXPR_NODEFUNC_NOT:
|
||||||
/* for */
|
/* for */
|
||||||
case EXPR_NODEFUNC_FOR:
|
case EXPR_NODEFUNC_FOR:
|
||||||
{
|
{
|
||||||
int pos;
|
int tmppos;
|
||||||
EXPRTYPE test;
|
EXPRTYPE test;
|
||||||
|
|
||||||
err = exprEvalNode(obj, nodes->data.function.nodes, 0, &d1);
|
err = exprEvalNode(obj, nodes->data.function.nodes, 0, &d1);
|
||||||
|
@ -1027,9 +1027,9 @@ case EXPR_NODEFUNC_FOR:
|
||||||
{
|
{
|
||||||
while(test != 0.0)
|
while(test != 0.0)
|
||||||
{
|
{
|
||||||
for(pos = 3; pos < nodes->data.function.nodecount; pos++)
|
for(tmppos = 3; tmppos < nodes->data.function.nodecount; tmppos++)
|
||||||
{
|
{
|
||||||
err = exprEvalNode(obj, nodes->data.function.nodes, pos, val);
|
err = exprEvalNode(obj, nodes->data.function.nodes, tmppos, val);
|
||||||
if(err)
|
if(err)
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
|
DefaultCharIsUnsigned="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
DisableSpecificWarnings="4100;4701"
|
DisableSpecificWarnings="4100;4701"
|
||||||
/>
|
/>
|
||||||
|
@ -101,6 +102,7 @@
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
|
DefaultCharIsUnsigned="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
DisableSpecificWarnings="4100;4701"
|
DisableSpecificWarnings="4100;4701"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue