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
This commit is contained in:
Yeongjong Lee 2019-01-28 17:15:34 +09:00 committed by Jaehyun Cho
parent 4704fda84d
commit 99930c1a59
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}