diff options
| author | David du Colombier <0intro@gmail.com> | 2011-11-08 09:02:28 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@swtch.com> | 2011-11-08 09:02:28 -0500 |
| commit | 36c242dd868672ae9c6705622ef1e7dbb84dbbac (patch) | |
| tree | 4eba2a8dbc55dddba2ee3b4660b4cbcadcc76ffd /src/libventi/entry.c | |
| parent | 11758776a1be725491395b59d52074e7f6fb6f82 (diff) | |
| download | plan9port-36c242dd868672ae9c6705622ef1e7dbb84dbbac.tar.gz plan9port-36c242dd868672ae9c6705622ef1e7dbb84dbbac.zip | |
venti: fix format on ulong
R=rsc
CC=plan9port.codebot
http://codereview.appspot.com/5328046
Diffstat (limited to 'src/libventi/entry.c')
| -rw-r--r-- | src/libventi/entry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libventi/entry.c b/src/libventi/entry.c index 6485714a..5e9a7c1f 100644 --- a/src/libventi/entry.c +++ b/src/libventi/entry.c @@ -63,7 +63,7 @@ vtentrypack(VtEntry *e, uchar *p, int index) psize = vttobig(psize); dsize = vttobig(dsize); 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); p += 2; |
