{
bflush(f);
res_detach(f->res);
- DBG("FB: closing", f);
+ DBG("FB: closing");
if (f->close)
f->close(f); /* Should always free all internal resources, even if it throws an exception */
}
void NONRET bthrow(struct fastbuf *f, const char *id, const char *fmt, ...)
{
- DBG("FB: throwing %s", full_id);
char full_id[16];
snprintf(full_id, sizeof(full_id), "ucw.fb.%s", id);
+ DBG("FB: throwing %s", full_id);
ASSERT(!(f->flags & FB_DEAD)); /* Only one bthrow() is allowed before bclose() */
va_list args;
va_start(args, fmt);