mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-27 11:52:03 +00:00
venti: fix format on ulong
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5328046
This commit is contained in:
parent
11758776a1
commit
36c242dd86
4 changed files with 5 additions and 5 deletions
|
@ -50,7 +50,7 @@ dump(int indent, uchar *score, int type)
|
||||||
Bprint(&bout, "%.*serror unpacking root %V: %r\n", indent*4, spaces, score);
|
Bprint(&bout, "%.*serror unpacking root %V: %r\n", indent*4, spaces, score);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
Bprint(&bout, "%.*s%V root name=%s type=%s prev=%V bsize=%d\n",
|
Bprint(&bout, "%.*s%V root name=%s type=%s prev=%V bsize=%ld\n",
|
||||||
indent*4, spaces, score, root.name, root.type, root.prev, root.blocksize);
|
indent*4, spaces, score, root.name, root.type, root.prev, root.blocksize);
|
||||||
dump(indent+1, root.score, VtDirType);
|
dump(indent+1, root.score, VtDirType);
|
||||||
break;
|
break;
|
||||||
|
@ -62,7 +62,7 @@ dump(int indent, uchar *score, int type)
|
||||||
Bprint(&bout, "%.*s%d: cannot unpack\n", indent+1, spaces, i);
|
Bprint(&bout, "%.*s%d: cannot unpack\n", indent+1, spaces, i);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
Bprint(&bout, "%.*s%d: gen=%#lux psize=%d dsize=%d type=%d flags=%#x size=%llud score=%V\n",
|
Bprint(&bout, "%.*s%d: gen=%#lux psize=%ld dsize=%ld type=%d flags=%#x size=%llud score=%V\n",
|
||||||
(indent+1)*4, spaces, i, e.gen, e.psize, e.dsize, e.type, e.flags, e.size, e.score);
|
(indent+1)*4, spaces, i, e.gen, e.psize, e.dsize, e.type, e.flags, e.size, e.score);
|
||||||
dump(indent+2, e.score, e.type);
|
dump(indent+2, e.score, e.type);
|
||||||
}
|
}
|
||||||
|
|
|
@ -63,7 +63,7 @@ vtentrypack(VtEntry *e, uchar *p, int index)
|
||||||
psize = vttobig(psize);
|
psize = vttobig(psize);
|
||||||
dsize = vttobig(dsize);
|
dsize = vttobig(dsize);
|
||||||
if(psize < 0 || dsize < 0)
|
if(psize < 0 || dsize < 0)
|
||||||
sysfatal("invalid entry psize/dsize: %d/%d", e->psize, e->dsize);
|
sysfatal("invalid entry psize/dsize: %ld/%ld", e->psize, e->dsize);
|
||||||
}
|
}
|
||||||
U16PUT(p, psize);
|
U16PUT(p, psize);
|
||||||
p += 2;
|
p += 2;
|
||||||
|
|
|
@ -67,7 +67,7 @@ vtfilealloc(VtCache *c, VtBlock *b, VtFile *p, u32int offset, int mode)
|
||||||
}
|
}
|
||||||
|
|
||||||
if(DEPTH(e.type) < sizetodepth(e.size, e.psize, e.dsize)){
|
if(DEPTH(e.type) < sizetodepth(e.size, e.psize, e.dsize)){
|
||||||
fprint(2, "depth %ud size %llud psize %ud dsize %ud\n",
|
fprint(2, "depth %ud size %llud psize %lud dsize %lud\n",
|
||||||
DEPTH(e.type), e.size, e.psize, e.dsize);
|
DEPTH(e.type), e.size, e.psize, e.dsize);
|
||||||
werrstr("bad depth");
|
werrstr("bad depth");
|
||||||
return nil;
|
return nil;
|
||||||
|
|
|
@ -27,7 +27,7 @@ vtrootpack(VtRoot *r, uchar *p)
|
||||||
vers |= _VtRootVersionBig;
|
vers |= _VtRootVersionBig;
|
||||||
bsize = vttobig(bsize);
|
bsize = vttobig(bsize);
|
||||||
if(bsize < 0)
|
if(bsize < 0)
|
||||||
sysfatal("invalid root blocksize: %#x", r->blocksize);
|
sysfatal("invalid root blocksize: %#lx", r->blocksize);
|
||||||
}
|
}
|
||||||
U16PUT(p, vers);
|
U16PUT(p, vers);
|
||||||
p += 2;
|
p += 2;
|
||||||
|
|
Loading…
Reference in a new issue