| 854 | */ |
| 855 | |
| 856 | static void |
| 857 | error_stack(_cups_ps_stack_t *st, /* I - Stack */ |
| 858 | const char *title) /* I - Title string */ |
| 859 | { |
| 860 | int c; /* Looping var */ |
| 861 | _cups_ps_obj_t *obj; /* Current object on stack */ |
| 862 | |
| 863 | |
| 864 | _cupsRasterAddError("%s", title); |
| 865 | |
| 866 | for (obj = st->objs, c = st->num_objs; c > 0; c --, obj ++) |
| 867 | error_object(obj); |
| 868 | |
| 869 | _cupsRasterAddError("\n"); |
| 870 | } |
| 871 | |
| 872 | |
| 873 | /* |
no test coverage detected