summaryrefslogtreecommitdiffstats
path: root/sbin/fsdb
diff options
context:
space:
mode:
authorotto <otto@openbsd.org>2007-06-25 20:00:29 +0000
committerotto <otto@openbsd.org>2007-06-25 20:00:29 +0000
commit5755ccccecb7fbab26ab12bf61e342ffc4648836 (patch)
treee2d09814591baf56f0c3cc8daf219ff959da3efd /sbin/fsdb
parentTeach fsck_ffs about 64-bit block addresses. ok (and help) moritz@ pedro@ (diff)
downloadwireguard-openbsd-5755ccccecb7fbab26ab12bf61e342ffc4648836.tar.xz
wireguard-openbsd-5755ccccecb7fbab26ab12bf61e342ffc4648836.zip
Teach fsdb about 64-bit block addresses. ok moritz@ pedro@
Diffstat (limited to 'sbin/fsdb')
-rw-r--r--sbin/fsdb/fsdb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/fsdb/fsdb.h b/sbin/fsdb/fsdb.h
index ff0f31f08e0..b052b312dc8 100644
--- a/sbin/fsdb/fsdb.h
+++ b/sbin/fsdb/fsdb.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: fsdb.h,v 1.6 2007/04/10 17:17:25 millert Exp $ */
+/* $OpenBSD: fsdb.h,v 1.7 2007/06/25 20:00:29 otto Exp $ */
/* $NetBSD: fsdb.h,v 1.4 1996/09/28 19:30:36 christos Exp $ */
/*-
@@ -37,9 +37,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-extern int bread(int fd, char *buf, daddr_t blk, long size);
-extern void bwrite(int fd, char *buf, daddr_t blk, long size);
-extern void rwerror(char *mesg, daddr_t blk);
+extern int bread(int fd, char *buf, daddr64_t blk, long size);
+extern void bwrite(int fd, char *buf, daddr64_t blk, long size);
+extern void rwerror(char *mesg, daddr64_t blk);
extern int reply(char *question);
extern long dev_bsize;