From: Pavel Charvat Date: Fri, 18 May 2007 14:39:14 +0000 (+0200) Subject: replaced %L -> %ll X-Git-Tag: holmes-import~506^2~13^2~136 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=62c94c7d0004c823af7792ddb73d8b0b52422d23;p=libucw.git replaced %L -> %ll --- diff --git a/lib/fb-direct.c b/lib/fb-direct.c index 32f17be8..9eca31fd 100644 --- a/lib/fb-direct.c +++ b/lib/fb-direct.c @@ -195,7 +195,7 @@ fbdir_spout(struct fastbuf *f) r->len = ALIGN_TO(r->len, FBDIR_ALIGN); asio_submit(r); asio_sync(F->io_queue); - DBG("FB-DIRECT: Truncating at %Ld", (long long)f->pos); + DBG("FB-DIRECT: Truncating at %llu", (long long)f->pos); if (sh_ftruncate(F->fd, f->pos) < 0) die("Error truncating %s: %m", f->name); } @@ -213,7 +213,7 @@ fbdir_spout(struct fastbuf *f) static int fbdir_seek(struct fastbuf *f, sh_off_t pos, int whence) { - DBG("FB-DIRECT: Seek %Ld %d", (long long)pos, whence); + DBG("FB-DIRECT: Seek %llu %d", (long long)pos, whence); if (whence == SEEK_SET && pos == f->pos) return 1;