| 2008 | // |
| 2009 | |
| 2010 | static void gen_endfor( const act* action, int column) |
| 2011 | { |
| 2012 | const gpre_req* request = action->act_request; |
| 2013 | column += INDENT; |
| 2014 | |
| 2015 | if (request->req_sync) |
| 2016 | gen_send(action, request->req_sync, column); |
| 2017 | |
| 2018 | endp(column); |
| 2019 | |
| 2020 | if (action->act_error || (action->act_flags & ACT_sql)) |
| 2021 | endp(column); |
| 2022 | } |
| 2023 | |
| 2024 | |
| 2025 | //____________________________________________________________ |
no test coverage detected