jaehyun pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=99930c1a59ba015971eee21c80d3c50b6008c77b

commit 99930c1a59ba015971eee21c80d3c50b6008c77b
Author: Yeongjong Lee <[email protected]>
Date:   Mon Jan 28 17:15:34 2019 +0900

    epp: fix correct parameters for cpp_error_with_line
    
    Reviewers: zmike, Jaehyun_Cho
    
    Reviewed By: Jaehyun_Cho
    
    Subscribers: cedric, #reviewers, #committers
    
    Tags: #efl
    
    Differential Revision: https://phab.enlightenment.org/D7795
---
 src/bin/edje/epp/cpplib.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/edje/epp/cpplib.c b/src/bin/edje/epp/cpplib.c
index c901a1e0ff..d7bde9de68 100644
--- a/src/bin/edje/epp/cpplib.c
+++ b/src/bin/edje/epp/cpplib.c
@@ -7405,7 +7405,7 @@ static void
 cpp_pedwarn_with_line(cpp_reader * pfile, int line, int column, const char 
*msg)
 {
    if (CPP_OPTIONS(pfile)->pedantic_errors)
-      cpp_error_with_line(pfile, column, line, msg);
+      cpp_error_with_line(pfile, line, column, msg);
    else
       cpp_warning_with_line(pfile, line, column, msg);
 }

-- 


Reply via email to