| 1970 | // |
| 1971 | |
| 1972 | static void gen_endfor( const act* action, int column) |
| 1973 | { |
| 1974 | const gpre_req* request = action->act_request; |
| 1975 | column += INDENT; |
| 1976 | |
| 1977 | if (request->req_sync) |
| 1978 | gen_send(action, request->req_sync, column); |
| 1979 | |
| 1980 | endp(column); |
| 1981 | |
| 1982 | if (action->act_error || (action->act_flags & ACT_sql)) |
| 1983 | endp(column); |
| 1984 | } |
| 1985 | |
| 1986 | |
| 1987 | //____________________________________________________________ |
no test coverage detected