acme: fix more error messages

This commit is contained in:
ftrvxmtrx 2013-04-28 00:19:35 +02:00
parent 3f8c1dc2fa
commit d173927c4f
3 changed files with 3 additions and 3 deletions

View File

@ -88,7 +88,7 @@ error(char *fmt, ...)
va_end(arg);
fmtprint(&f, "\n");
fmtfdflush(&f);
threadexitsall(fmt);
threadexitsall(buf);
}
void

View File

@ -88,7 +88,7 @@ error(char *fmt, ...)
va_end(arg);
fmtprint(&f, "\n");
fmtfdflush(&f);
threadexitsall(fmt);
threadexitsall(buf);
}
void

View File

@ -71,7 +71,7 @@ error(char *fmt, ...)
va_end(arg);
write(2, buf, n);
write(2, "\n", 1);
threadexitsall(fmt);
threadexitsall(buf);
}
void