kwo pushed a commit to branch master.

http://git.enlightenment.org/e16/e16.git/commit/?id=7522a14b80be6383683da38b9b8df4ec58ea7cb8

commit 7522a14b80be6383683da38b9b8df4ec58ea7cb8
Author: Kim Woelders <k...@woelders.dk>
Date:   Mon Mar 5 21:49:19 2018 +0100

    epp/cpplib.c: Fix warnings found with -O3
---
 epp/cpplib.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/epp/cpplib.c b/epp/cpplib.c
index f96d4684..6209c817 100644
--- a/epp/cpplib.c
+++ b/epp/cpplib.c
@@ -4512,7 +4512,8 @@ 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;
+   long                newlines = 0;
    enum cpp_token      token;
    struct cpp_options *opts = CPP_OPTIONS(pfile);
 
@@ -4553,7 +4554,6 @@ cpp_get_token(cpp_reader * pfile)
      {
        switch (c)
          {
-            long                newlines;
             struct parse_marker start_mark;
 
          case '/':

-- 


Reply via email to