TecsServer no longer restarted by SICS
This commit is contained in:
@@ -69,12 +69,12 @@ void ErrShow(char *text)
|
||||
outrtn(outarg, "");
|
||||
}
|
||||
|
||||
void ErrShort(void) {
|
||||
void ErrShort(char *msg) {
|
||||
if (outrtn==NULL) {
|
||||
outrtn=ErrOutFil;
|
||||
outarg=stdout;
|
||||
}
|
||||
outrtn(outarg, ErrMessage);
|
||||
outrtn(outarg, msg);
|
||||
}
|
||||
|
||||
void ErrSetOutRtn(void (*rtn)(), void *arg) {
|
||||
@@ -125,6 +125,7 @@ void err_msg_(F_CHAR(text), int text_len) {
|
||||
void err_set_outrtn_(void (*rtn)(), void *arg) {
|
||||
ErrSetOutRtn(rtn, arg);
|
||||
}
|
||||
|
||||
void err_short_(void) {
|
||||
ErrShort();
|
||||
ErrShort(ErrMessage);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user