]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/fb-grow.c
Trans: Document which modules have to be resourcified
[libucw.git] / ucw / fb-grow.c
index 803e411e651b7659eeb5afd4d6ab3e3247e1e8f8..f6131536662a3c2c4ff25123192e09d4af6aefa4 100644 (file)
@@ -56,7 +56,7 @@ static int fbgrow_seek(struct fastbuf *b, ucw_off_t pos, int whence)
   if (whence == SEEK_END)
     pos += len;
   if (pos < 0 || pos > len)
-    bthrow(b, "fb.seek", "Seek out of range");
+    bthrow(b, "seek", "Seek out of range");
   b->bptr = b->buffer + pos;
   b->bstop = b->buffer;
   b->pos = 0;