| 1138 | // |
| 1139 | |
| 1140 | void CPR_s_error(const TEXT* string) |
| 1141 | { |
| 1142 | TEXT s[512]; |
| 1143 | |
| 1144 | fb_utils::snprintf(s, sizeof(s), |
| 1145 | "expected %s, encountered \"%s\"", string, gpreGlob.token_global.tok_string); |
| 1146 | CPR_error(s); |
| 1147 | PAR_unwind(); |
| 1148 | } |
| 1149 | |
| 1150 | |
| 1151 | //____________________________________________________________ |
no test coverage detected