| 1713 | } |
| 1714 | |
| 1715 | void BURP_print(bool err, USHORT number, const SafeArg& arg) |
| 1716 | { |
| 1717 | /************************************** |
| 1718 | * |
| 1719 | * B U R P _ p r i n t |
| 1720 | * |
| 1721 | ************************************** |
| 1722 | * |
| 1723 | * Functional description |
| 1724 | * Display a formatted error message |
| 1725 | * in a way that civilized systems |
| 1726 | * will accept. |
| 1727 | * |
| 1728 | **************************************/ |
| 1729 | BurpMaster master; |
| 1730 | |
| 1731 | BURP_msg_partial(err, 169); // msg 169: gbak: |
| 1732 | BURP_msg_put(err, number, arg); |
| 1733 | } |
| 1734 | |
| 1735 | |
| 1736 | void BURP_print(bool err, USHORT number, const char* str) |
no test coverage detected