Edje: Fix 'variable may be used uninitialized' warning.

SVN revision: 60197
This commit is contained in:
Christopher Michael 2011-06-10 16:43:23 +00:00
parent d914f3d711
commit 2cd2227cf3
1 changed files with 1 additions and 1 deletions

View File

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