estimated max. usage: unknown, due to recursion
#1

How to fix this?
estimated max. usage: unknown, due to recursion
I compiled with param -d3

I also dont return functions
Reply
#2

It says that because you have functions that call themselves. For example:
pawn Код:
function1(param)
{
    if(foo())
    {
        function1(42);
    }
}
Reply
#3

hmmm I dont see any functions like that in my script

I use dcmd maybe they call themself
Reply
#4

can anyone help me please
Reply
#5

The only reason of recursion is that what Vince said. You've also checked your includes etc.?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)