diff options
author | rsc <devnull@localhost> | 2004-06-16 15:31:30 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-06-16 15:31:30 +0000 |
commit | 75a69d3b20b73b4a66530043090198b8be1d7d0a (patch) | |
tree | 1e96d1983c7dfb6afc407a7158cba2dcbc1480ef /src/libbio | |
parent | bd2e802053c8fc6babf4c2bb6e33912f1c0aee9d (diff) | |
download | plan9port-75a69d3b20b73b4a66530043090198b8be1d7d0a.tar.gz plan9port-75a69d3b20b73b4a66530043090198b8be1d7d0a.tar.bz2 plan9port-75a69d3b20b73b4a66530043090198b8be1d7d0a.zip |
probably fix bug in seek
Diffstat (limited to 'src/libbio')
-rw-r--r-- | src/libbio/bseek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libbio/bseek.c b/src/libbio/bseek.c index f4325fb8..c9e4493e 100644 --- a/src/libbio/bseek.c +++ b/src/libbio/bseek.c @@ -4,7 +4,7 @@ off_t Bseek(Biobuf *bp, off_t offset, int base) { - off_t n, d; + vlong n, d; switch(bp->state) { default: |