aboutsummaryrefslogtreecommitdiff
path: root/coreutils/stat.c
diff options
context:
space:
mode:
authorvodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-20 11:17:48 +0000
committervodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-20 11:17:48 +0000
commitb18d17b1b35fb9a413b085512568c7f589d24b8b (patch)
treee191e1f4019e7b0daf47f9077e375588f77b3c6a /coreutils/stat.c
parent7dfd514f172c48039e71d235a0abb2160e9282be (diff)
downloadbusybox-w32-b18d17b1b35fb9a413b085512568c7f589d24b8b.tar.gz
busybox-w32-b18d17b1b35fb9a413b085512568c7f589d24b8b.tar.bz2
busybox-w32-b18d17b1b35fb9a413b085512568c7f589d24b8b.zip
another more const
git-svn-id: svn://busybox.net/trunk/busybox@11897 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/stat.c')
-rw-r--r--coreutils/stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/stat.c b/coreutils/stat.c
index 138cc9e8b..c17b4d5e8 100644
--- a/coreutils/stat.c
+++ b/coreutils/stat.c
@@ -81,9 +81,9 @@ static char const *human_time(time_t t)
81static char const *human_fstype(long f_type) 81static char const *human_fstype(long f_type)
82{ 82{
83 int i; 83 int i;
84 static struct types { 84 static const struct types {
85 long type; 85 long type;
86 char *fs; 86 const char *fs;
87 } humantypes[] = { 87 } humantypes[] = {
88 { 0xADFF, "affs" }, 88 { 0xADFF, "affs" },
89 { 0x1Cd1, "devpts" }, 89 { 0x1Cd1, "devpts" },