From 99930c1a59ba015971eee21c80d3c50b6008c77b Mon Sep 17 00:00:00 2001 From: Yeongjong Lee Date: Mon, 28 Jan 2019 17:15:34 +0900 Subject: [PATCH] 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); }