acme: fix more error messages
This commit is contained in:
parent
3f8c1dc2fa
commit
d173927c4f
3 changed files with 3 additions and 3 deletions
|
@ -88,7 +88,7 @@ error(char *fmt, ...)
|
||||||
va_end(arg);
|
va_end(arg);
|
||||||
fmtprint(&f, "\n");
|
fmtprint(&f, "\n");
|
||||||
fmtfdflush(&f);
|
fmtfdflush(&f);
|
||||||
threadexitsall(fmt);
|
threadexitsall(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
@ -88,7 +88,7 @@ error(char *fmt, ...)
|
||||||
va_end(arg);
|
va_end(arg);
|
||||||
fmtprint(&f, "\n");
|
fmtprint(&f, "\n");
|
||||||
fmtfdflush(&f);
|
fmtfdflush(&f);
|
||||||
threadexitsall(fmt);
|
threadexitsall(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
@ -71,7 +71,7 @@ error(char *fmt, ...)
|
||||||
va_end(arg);
|
va_end(arg);
|
||||||
write(2, buf, n);
|
write(2, buf, n);
|
||||||
write(2, "\n", 1);
|
write(2, "\n", 1);
|
||||||
threadexitsall(fmt);
|
threadexitsall(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue