diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-08-26 16:10:58 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-08-26 16:10:58 +0000 |
commit | a0a0312e6f3f9885eeb318860cd884c7132fa23e (patch) | |
tree | 5285939d58453625566d1d270153fe04a561342e /sys/ufs/ffs/fs.h | |
parent | 2104dfd054ea5c2131737dd3200cb8c9b686f753 (diff) |
constify ffs_tables
Diffstat (limited to 'sys/ufs/ffs/fs.h')
-rw-r--r-- | sys/ufs/ffs/fs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/ufs/ffs/fs.h b/sys/ufs/ffs/fs.h index 7e58d88d679..231c9719039 100644 --- a/sys/ufs/ffs/fs.h +++ b/sys/ufs/ffs/fs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: fs.h,v 1.14 2003/08/25 23:26:55 tedu Exp $ */ +/* $OpenBSD: fs.h,v 1.15 2003/08/26 16:10:57 mickey Exp $ */ /* $NetBSD: fs.h,v 1.6 1995/04/12 21:21:02 mycroft Exp $ */ /* @@ -530,5 +530,5 @@ struct ocg { */ #define NINDIR(fs) ((fs)->fs_nindir) -extern int inside[], around[]; -extern u_char *fragtbl[]; +extern const int inside[], around[]; +extern const u_char *fragtbl[]; |