Edje:EPP: Comment out unused goto line. Fix (some) formatting (but

needs more fixing as the formatting in this is just horrible).



SVN revision: 58074
This commit is contained in:
Christopher Michael 2011-03-24 20:25:17 +00:00
parent fd3d76b220
commit 49bc9d8ee1
2 changed files with 4 additions and 2 deletions

View File

@ -4537,7 +4537,7 @@ cpp_get_token(cpp_reader * pfile)
{ {
int c, c2, c3; int c, c2, c3;
long old_written = 0; long old_written = 0;
long start_line, start_column; long start_line = 0, start_column = 0;
enum cpp_token token; enum cpp_token token;
struct cpp_options *opts = CPP_OPTIONS(pfile); struct cpp_options *opts = CPP_OPTIONS(pfile);

View File

@ -123,15 +123,17 @@ main(int argc, char **argv)
#endif #endif
if (!opts->no_output) if (!opts->no_output)
{ {
size_t n; size_t n;
n = CPP_WRITTEN(&parse_in); n = CPP_WRITTEN(&parse_in);
if (fwrite(parse_in.token_buffer, 1, n, stdout) != n) if (fwrite(parse_in.token_buffer, 1, n, stdout) != n)
exit(FATAL_EXIT_CODE); exit(FATAL_EXIT_CODE);
} }
/*
next: next:
parse_in.limit = parse_in.token_buffer; parse_in.limit = parse_in.token_buffer;
got_text = 0; got_text = 0;
*/
} }
done: done: