diff options
author | Yeongjong Lee <yj34.lee@samsung.com> | 2019-01-28 17:15:34 +0900 |
---|---|---|
committer | Jaehyun Cho <jae_hyun.cho@samsung.com> | 2019-01-28 17:15:34 +0900 |
commit | 99930c1a59ba015971eee21c80d3c50b6008c77b (patch) | |
tree | 6b3442c5c87cf13be2f021ef9b0c5d5a0314757c | |
parent | 4704fda84db57b49a9b178712c80c0792f985ef1 (diff) | |
download | efl-99930c1a59ba015971eee21c80d3c50b6008c77b.tar.gz |
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
-rw-r--r-- | src/bin/edje/epp/cpplib.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |