warning 217: loose indentation
#2

It's due to the fact you got your code a bit messed up when it comes to the tabbing.

You want code to look like this

Код:
if(IAmHelping){

 Analyse();
     debug();
 fix();

}
Not like this:
Ё
Код:
if(IAmHelping) {
   Analyse();
                                   Debug();
fix();
}
'

So aline your code with eachother and it should be good.


Source: https://sampwiki.blast.hk/wiki/Errors_Li...ded_assignment

Note: If you prefer to keep it your way, you could always add this:
Код:
#pragma tabsize 0
at the top to ignore the warning.
Reply


Messages In This Thread
warning 217: loose indentation - by botak - 06.01.2014, 09:22
Re: warning 217: loose indentation - by CrazyGab - 06.01.2014, 09:27
Re: warning 217: loose indentation - by Sinner - 06.01.2014, 09:28
Re: warning 217: loose indentation - by botak - 06.01.2014, 09:31
Re: warning 217: loose indentation - by CrazyGab - 06.01.2014, 09:33
Re: warning 217: loose indentation - by denom - 06.01.2014, 09:34
Re: warning 217: loose indentation - by botak - 06.01.2014, 09:36

Forum Jump:


Users browsing this thread: 1 Guest(s)