Fix parameters order.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-03-13 20:10:32 +01:00
parent e498bc7646
commit 7897f28ebb
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 1 deletions

View File

@ -3926,7 +3926,7 @@ static sxi32 PH7_CompileClassInterface(ph7_gen_state *pGen) {
}
}
/* Process method signature */
rc = PH7_GenStateCompileClassMethod(&(*pGen), 0, FALSE/* Only method signature*/, iFlags, pClass);
rc = PH7_GenStateCompileClassMethod(&(*pGen), 0, iFlags, FALSE/* Only method signature*/, pClass);
if(rc != SXRET_OK) {
if(rc == SXERR_ABORT) {
return SXERR_ABORT;