diff options
| author | Jcw87 <Jcw87@users.noreply.github.com> | 2023-04-29 17:31:04 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-29 17:31:04 -0700 |
| commit | 0c4e853e4bc94bfe736c5575075334cc6e3d6397 (patch) | |
| tree | cd4a2dfa640349ff7454d2b935e6a97782e8744d /src/d/msg/d_msg_flow.cpp | |
| parent | ca4ebc90127acd223418c774bd0235bb80e1d672 (diff) | |
fix functions not returning values (#324)
Diffstat (limited to 'src/d/msg/d_msg_flow.cpp')
| -rw-r--r-- | src/d/msg/d_msg_flow.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/d/msg/d_msg_flow.cpp b/src/d/msg/d_msg_flow.cpp index 9ee7d62214..a0d16cf3b6 100644 --- a/src/d/msg/d_msg_flow.cpp +++ b/src/d/msg/d_msg_flow.cpp @@ -954,7 +954,9 @@ int dMsgFlow_c::query005(mesg_flow_node_branch*, fopAc_ac_c*, int) { /* 8024B2F8-8024B32C 245C38 0034+00 1/0 0/0 0/0 .text * query006__10dMsgFlow_cFP21mesg_flow_node_branchP10fopAc_ac_ci */ int dMsgFlow_c::query006(mesg_flow_node_branch* flow_node, fopAc_ac_c* param_1, int) { - mChoiceNo = query005(flow_node, param_1, 0); + int r3 = query005(flow_node, param_1, 0); + mChoiceNo = r3; + return r3; } /* 8024B32C-8024B45C 245C6C 0130+00 1/0 0/0 0/0 .text |
