diff options
author | rsc <rsc> | 2006-09-07 14:39:05 +0000 |
---|---|---|
committer | rsc <rsc> | 2006-09-07 14:39:05 +0000 |
commit | 7a054598fa35a7c538d79589619ef3be1ff47866 (patch) | |
tree | 68295dc88fd622890cc5db15eb459b25d67ca66f /bio.c | |
parent | 70c3260dc40460bf2d893812c1dde5261e6327ba (diff) | |
download | xv6-labs-7a054598fa35a7c538d79589619ef3be1ff47866.tar.gz xv6-labs-7a054598fa35a7c538d79589619ef3be1ff47866.tar.bz2 xv6-labs-7a054598fa35a7c538d79589619ef3be1ff47866.zip |
fix build bug
Diffstat (limited to 'bio.c')
-rw-r--r-- | bio.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ binit(void) // If not found, allocate fresh block. // In either case, return locked buffer. static struct buf* -getblk(uint dev, uint sector) +bget(uint dev, uint sector) { struct buf *b; |