| 747 | /* Report an error for a DWARF buffer. */ |
| 748 | |
| 749 | static void |
| 750 | dwarf_buf_error (struct dwarf_buf *buf, const char *msg, int errnum) |
| 751 | { |
| 752 | char b[200]; |
| 753 | |
| 754 | snprintf (b, sizeof b, "%s in %s at %d", |
| 755 | msg, buf->name, (int) (buf->buf - buf->start)); |
| 756 | buf->error_callback (buf->data, b, errnum); |
| 757 | } |
| 758 | |
| 759 | /* Require at least COUNT bytes in BUF. Return 1 if all is well, 0 on |
| 760 | error. */ |
no outgoing calls
no test coverage detected