*** empty log message ***
This commit is contained in:
@@ -93,7 +93,7 @@ void ERR_EXIT(char *text) {
|
||||
ErrWrite(text); exit(1);
|
||||
}
|
||||
|
||||
void ErrShowFtn_(char *text, int length) {
|
||||
void err_show_(char *text, int length) {
|
||||
char buf[256];
|
||||
|
||||
if (length>=256) length=255;
|
||||
@@ -106,9 +106,12 @@ void ErrShowFtn_(char *text, int length) {
|
||||
|
||||
typedef struct { short size, dummy; char *text; } Desc;
|
||||
|
||||
void ErrShowFtn(Desc *desc) {
|
||||
ErrShowFtn_(desc->text, desc->size);
|
||||
void err_show(Desc *desc) {
|
||||
err_show_(desc->text, desc->size);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
void errsetoutrtn_(void (*rtn)(), void *arg) {
|
||||
ErrSetOutRtn(rtn, arg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user