Edje: Fix 'variable may be used uninitialized' warning.
authordevilhorns <devilhorns@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 10 Jun 2011 16:43:23 +0000 (16:43 +0000)
committerdevilhorns <devilhorns@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 10 Jun 2011 16:43:23 +0000 (16:43 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60197 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/bin/epp/cpplib.c

index b6bea8c..c134cba 100644 (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);