diff options
author | jhb <jhb@FreeBSD.org> | 2011-01-19 19:49:48 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2011-01-19 19:49:48 +0000 |
commit | 8b2a72df6244536ff98630c89e2c8f878699fe77 (patch) | |
tree | 82ee3437b264fb2e219184f3044d7877452c237f | |
parent | fbad453baa003b4d621ee5bdd3e60426e1f4d6de (diff) | |
download | FreeBSD-src-8b2a72df6244536ff98630c89e2c8f878699fe77.zip FreeBSD-src-8b2a72df6244536ff98630c89e2c8f878699fe77.tar.gz |
Fix build with KDB defined.
Pointy hat to: jhb
Submitted by: jkim
-rw-r--r-- | sys/fs/ext2fs/ext2_subr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/fs/ext2fs/ext2_subr.c b/sys/fs/ext2fs/ext2_subr.c index c33ebb0..70ade83 100644 --- a/sys/fs/ext2fs/ext2_subr.c +++ b/sys/fs/ext2fs/ext2_subr.c @@ -52,6 +52,8 @@ #include <fs/ext2fs/fs.h> #ifdef KDB +#include <fs/ext2fs/ext2_mount.h> + void ext2_checkoverlap(struct buf *, struct inode *); #endif |