aboutsummaryrefslogtreecommitdiff
path: root/fsck_minix.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-09 21:24:12 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-09 21:24:12 +0000
commit1ac3737b2be159605be497acba46eb6ebc0de450 (patch)
treec9e6d3d695cbb2449132428a32fb6c309aad870f /fsck_minix.c
parent1f5b759db15ea574fdb31e86b8916835dbd43dbe (diff)
downloadbusybox-w32-1ac3737b2be159605be497acba46eb6ebc0de450.tar.gz
busybox-w32-1ac3737b2be159605be497acba46eb6ebc0de450.tar.bz2
busybox-w32-1ac3737b2be159605be497acba46eb6ebc0de450.zip
A cleanup patch from Jeff Garzik to static-ify a number of
namespace polluting things that really should be static. git-svn-id: svn://busybox.net/trunk/busybox@2027 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'fsck_minix.c')
-rw-r--r--fsck_minix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fsck_minix.c b/fsck_minix.c
index 9a53a705e..bd0c8a61c 100644
--- a/fsck_minix.c
+++ b/fsck_minix.c
@@ -701,7 +701,7 @@ static void read_tables(void)
701 } 701 }
702} 702}
703 703
704struct minix_inode *get_inode(unsigned int nr) 704static struct minix_inode *get_inode(unsigned int nr)
705{ 705{
706 struct minix_inode *inode; 706 struct minix_inode *inode;
707 707
@@ -749,7 +749,7 @@ struct minix_inode *get_inode(unsigned int nr)
749} 749}
750 750
751#ifdef BB_FEATURE_MINIX2 751#ifdef BB_FEATURE_MINIX2
752struct minix2_inode *get_inode2(unsigned int nr) 752static struct minix2_inode *get_inode2(unsigned int nr)
753{ 753{
754 struct minix2_inode *inode; 754 struct minix2_inode *inode;
755 755