{ ....do.{for{;;};} ....while(0); }
is wrongly formatted into:
{ ....do ....{ ........for{;;}; }.while(0); }
it should be as follows:
{ ....do ....{ ........for{;;}; ....}.while(0); }
Same problem:
{ ....do.{for{;;};}.while(0); }
Log in to post a comment.
Same problem: