Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 8ff7315

Browse files
author
Monte Goulding
committed
Fixed minor issue with out param name
1 parent 8ffd209 commit 8ff7315

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lcidlc/src/InterfaceGenerate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ static void InterfaceGenerateVariant(InterfaceRef self, CoderRef p_coder, Handle
11931193
if (t_parameter -> mode == kParameterTypeInOut || t_parameter -> mode == kParameterTypeOut)
11941194
{
11951195
CoderBeginIf(p_coder, "success");
1196-
CoderWriteStatement(p_coder, "success = verify__out_parameter(name__%s, %s);", t_parameter -> name, t_parameter -> arg_name);
1196+
CoderWriteStatement(p_coder, "success = verify__out_parameter(name__%s, %s);", t_parameter -> var_name, t_parameter -> arg_name);
11971197
CoderEndIf(p_coder);
11981198
}
11991199

0 commit comments

Comments
 (0)