in reply to Re: RawIP compile problems
in thread RawIP compile problems

I have the feeling the compiler doesn't like the default:, with nothing following it. The compiler choking over a newline seems too far fetched - nor does the error message suggest anything like that. On the other hand, error: label at end of compound statement strongly suggests the problem lies with a label at the end of a compound statement. Like default:.

I'd try default: ;, or default: break;, or if that doesn't work, removing the default lines.

Replies are listed 'Best First'.
Re^3: RawIP compile problems
by Anonymous Monk on Feb 20, 2008 at 20:28 UTC
    I had the same problem. '%s/default:/default: ;/g' in vi fixed it. Thanks!