diff options
author | Russ Cox <rsc@swtch.com> | 2008-07-09 14:17:30 -0400 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2008-07-09 14:17:30 -0400 |
commit | 427abd1ebdbd44d5c40936fcd4f3b02fea86f7ec (patch) | |
tree | 7bb7f67f21bc877831544111341dffa4273983b8 /src | |
parent | e960e21be1b197cfde3a7601a2120a93aa309a12 (diff) | |
download | plan9port-427abd1ebdbd44d5c40936fcd4f3b02fea86f7ec.tar.gz plan9port-427abd1ebdbd44d5c40936fcd4f3b02fea86f7ec.tar.bz2 plan9port-427abd1ebdbd44d5c40936fcd4f3b02fea86f7ec.zip |
lib9: fix Apple disksize prototype
Diffstat (limited to 'src')
-rw-r--r-- | src/lib9/_p9dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib9/_p9dir.c b/src/lib9/_p9dir.c index 4f9060a6..afda0c52 100644 --- a/src/lib9/_p9dir.c +++ b/src/lib9/_p9dir.c @@ -11,7 +11,7 @@ #define _HAVESTGEN #include <sys/disk.h> static vlong -disksize(int fd, int dev) +disksize(int fd, struct stat *st) { u64int bc; u32int bs; |